##// END OF EJS Templates
py3: handle keyword arguments correctly in color.py...
Pulkit Goyal -
r35352:a4478f74 default
parent child Browse files
Show More
@@ -484,7 +484,7 b' if pycompat.iswindows:'
484 _win32print(ui, text, writefunc, **opts)
484 _win32print(ui, text, writefunc, **opts)
485
485
486 def _win32print(ui, text, writefunc, **opts):
486 def _win32print(ui, text, writefunc, **opts):
487 label = opts.get('label', '')
487 label = opts.get(r'label', '')
488 attr = origattr
488 attr = origattr
489
489
490 def mapcolor(val, attr):
490 def mapcolor(val, attr):
General Comments 0
You need to be logged in to leave comments. Login now