Skip to content

Commit

Permalink
Removed call to protected process_selection now that it isn't protected
Browse files Browse the repository at this point in the history
Updated CHANGELOG
  • Loading branch information
jdetle committed Jul 6, 2016
1 parent 7220db5 commit 18a4e4c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The rules for this file:
* release numbers follow "Semantic Versioning" http://semver.org

------------------------------------------------------------------------------
??/??/16 kain88-de, jdetle, fiona-naughton, richardjgowers, tyler.je.reddy
??/??/16 kain88-de, fiona-naughton, richardjgowers, tyler.je.reddy, jdetle

* 0.15.1

Expand All @@ -24,7 +24,8 @@ Fixes
* SingleFrameReader now raises StopIteration instead of IOError on calling
next (Issue #869)
* Display of Deprecation warnings doesn't affect other modules anymore (Issue #754)

* Removed call to protected process_selection function in RMSD

Changes
* Added protected variable _frame_index to to keep track of frame iteration
number in AnalysisBase
Expand Down
4 changes: 2 additions & 2 deletions package/MDAnalysis/analysis/rms.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,9 +338,9 @@ def __init__(self, traj, reference=None, select='all',
self.reference = self.universe
else:
self.reference = reference
self.select = _process_selection(select)
self.select = process_selection(select)
if groupselections is not None:
self.groupselections = [_process_selection(s) for s in groupselections]
self.groupselections = [process_selection(s) for s in groupselections]
else:
self.groupselections = []
self.mass_weighted = mass_weighted
Expand Down

0 comments on commit 18a4e4c

Please sign in to comment.