##// END OF EJS Templates
revlog: remove pycompat.iteritems()...
Gregory Szorc -
r49783:ceafb0f8 default
parent child Browse files
Show More
@@ -437,9 +437,7 b' class revlog(object):'
437 self._flagprocessors[REVIDX_ELLIPSIS] = ellipsisprocessor
437 self._flagprocessors[REVIDX_ELLIPSIS] = ellipsisprocessor
438
438
439 # revlog v0 doesn't have flag processors
439 # revlog v0 doesn't have flag processors
440 for flag, processor in pycompat.iteritems(
440 for flag, processor in opts.get(b'flagprocessors', {}).items():
441 opts.get(b'flagprocessors', {})
442 ):
443 flagutil.insertflagprocessor(flag, processor, self._flagprocessors)
441 flagutil.insertflagprocessor(flag, processor, self._flagprocessors)
444
442
445 if self._chunkcachesize <= 0:
443 if self._chunkcachesize <= 0:
General Comments 0
You need to be logged in to leave comments. Login now