comparison mercurial/crecord.py @ 29078:eeacfa36ed3f

crecord: update a copy-pasted comment in downarrowshiftevent()
author Anton Shestakov <av6@dwimlabs.net>
date Thu, 05 May 2016 15:19:37 +0800
parents 6ecd1a00977e
children 90bb5bdb0b2f
comparison
equal deleted inserted replaced
29077:6ecd1a00977e 29078:eeacfa36ed3f
669 """ 669 """
670 # todo: update docstring 670 # todo: update docstring
671 671
672 currentitem = self.currentselecteditem 672 currentitem = self.currentselecteditem
673 nextitem = currentitem.nextitem() 673 nextitem = currentitem.nextitem()
674 # if there's no previous item on this level, try choosing the parent's 674 # if there's no next item on this level, try choosing the parent's
675 # nextitem. 675 # nextitem.
676 if nextitem is None: 676 if nextitem is None:
677 try: 677 try:
678 nextitem = currentitem.parentitem().nextitem() 678 nextitem = currentitem.parentitem().nextitem()
679 except AttributeError: 679 except AttributeError: