##// END OF EJS Templates
util: fix %-formatting on docstring by moving a closing parenthesis...
Augie Fackler -
r31811:d955b02d default
parent child Browse files
Show More
@@ -3705,8 +3705,8 b' def bundlecompressiontopics():'
3705 if not bt or not bt[0]:
3705 if not bt or not bt[0]:
3706 continue
3706 continue
3707
3707
3708 doc = pycompat.sysstr('``%s``\n %s' % (
3708 doc = pycompat.sysstr('``%s``\n %s') % (
3709 bt[0], engine.bundletype.__doc__))
3709 bt[0], engine.bundletype.__doc__)
3710
3710
3711 value = docobject()
3711 value = docobject()
3712 value.__doc__ = doc
3712 value.__doc__ = doc
General Comments 0
You need to be logged in to leave comments. Login now