##// END OF EJS Templates
py3: convert key to str to make kwargs.pop work in mq...
py3: convert key to str to make kwargs.pop work in mq The keys are passed here and there as unicodes and our transformer make things bytes. Due to that, mq was not poped and this results in error on Py3. Here we abuse r'' to make that str on Python 3.

File last commit:

r31628:e86eb75e default
r32193:c6cbd0b6 default
Show More
color.py
31 lines | 933 B | text/x-python | PythonLexer
# color.py color output for Mercurial commands
#
# Copyright (C) 2007 Kevin Christen <kevin.christen@gmail.com>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
'''enable Mercurial color mode (DEPRECATED)
This extension enables Mercurial color mode. The feature is now directly
available in Mercurial core. You can access it using::
[ui]
color = auto
See :hg:`help color` for details.
'''
from __future__ import absolute_import
from mercurial import color
# Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
# extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
# be specifying the version(s) of Mercurial they are tested with, or
# leave the attribute unspecified.
testedwith = 'ships-with-hg-core'
def extsetup(ui):
# change default color config
color._enabledbydefault = True