D6864: py3: don't double-convert "opts" to bytes

martinvonz (Martin von Zweigbergk) phabricator at mercurial-scm.org
Wed Sep 18 09:24:46 EDT 2019


Closed by commit rHG44be33cf7a57: py3: don't double-convert "opts" to bytes (authored by martinvonz).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D6864?vs=16575&id=16585

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D6864/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D6864

AFFECTED FILES
  hgext/uncommit.py

CHANGE DETAILS

diff --git a/hgext/uncommit.py b/hgext/uncommit.py
--- a/hgext/uncommit.py
+++ b/hgext/uncommit.py
@@ -177,7 +177,7 @@
         with repo.transaction('uncommit'):
             if not (opts[b'message'] or opts[b'logfile']):
                 opts[b'message'] = old.description()
-            message = cmdutil.logmessage(ui, pycompat.byteskwargs(opts))
+            message = cmdutil.logmessage(ui, opts)
 
             keepcommit = pats
             if not keepcommit:



To: martinvonz, #hg-reviewers, pulkit
Cc: mercurial-devel


More information about the Mercurial-devel mailing list