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 852daec commit c868ed2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Fixes
next (Issue #869)
* Display of Deprecation warnings doesn't affect other modules anymore (Issue #754)
* Changed nframes to n_frames in analysis modules for consistency (Issue #890)
* Removed call to protected process_selection function in RMSD

Changes
* Added protected variable _frame_index to to keep track of frame iteration
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 c868ed2

Please sign in to comment.