You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{{
def plain(self):
'''is plain mode active?
Plain mode means that all configuration variables which affect the
behavior and output of Mercurial should be ignored. Additionally, the
output should be stable, reproducible and suitable for use in scripts or
applications.
The only way to trigger plain mode is by setting the `HGPLAIN'
environment variable.
"""
}}}
this is mercurial.ui.ui method and a docstring. We should set that 'HGPLAIN' environment variable probably at the mercurial backend's module level as it would stabilize the output - could be helpful with workdirs.
{{{
def plain(self):
'''is plain mode active?
Plain mode means that all configuration variables which affect the
behavior and output of Mercurial should be ignored. Additionally, the
output should be stable, reproducible and suitable for use in scripts or
applications.
The only way to trigger plain mode is by setting the `HGPLAIN'
environment variable.
"""
}}}
this is mercurial.ui.ui method and a docstring. We should set that 'HGPLAIN' environment variable probably at the mercurial backend's module level as it would stabilize the output - could be helpful with workdirs.
Reference: https://bitbucket.org/marcinkuzminski/vcs/issues/28/
The text was updated successfully, but these errors were encountered: