Submitter | phabricator |
---|---|
Date | March 2, 2018, 4:18 p.m. |
Message ID | <3d8730a4516e6633a76afa24387827d9@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/28694/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/purge.py b/hgext/purge.py --- a/hgext/purge.py +++ b/hgext/purge.py @@ -31,6 +31,7 @@ from mercurial import ( cmdutil, error, + pycompat, registrar, scmutil, util, @@ -84,6 +85,7 @@ list of files that this program would delete, use the --print option. ''' + opts = pycompat.byteskwargs(opts) act = not opts.get('print') eol = '\n' if opts.get('print0'):