Skip to content

Commit

Permalink
[#12] fixed Query._clone()
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoine de Torcy committed Feb 14, 2015
1 parent 353dd58 commit ed20539
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions irods/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ def _clone(self):
new_q = Query(self.sess)
new_q.columns = self.columns
new_q.criteria = self.criteria
new_q.limit = self._limit
new_q.offset = self._offset
new_q._limit = self._limit
new_q._offset = self._offset
return new_q

def filter(self, *criteria):
Expand Down

0 comments on commit ed20539

Please sign in to comment.