diff mercurial/commands.py @ 33092:d170f59f6f55

py3: fix kwargs handling for `hg bookmarks`
author Pulkit Goyal <7895pulkit@gmail.com>
date Sat, 24 Jun 2017 19:55:01 +0530
parents 73dfc72704b6
children a5e1393f61a2
line wrap: on
line diff
--- a/mercurial/commands.py	Mon Jun 26 09:37:16 2017 +0900
+++ b/mercurial/commands.py	Sat Jun 24 19:55:01 2017 +0530
@@ -944,12 +944,11 @@
 
           hg book -f @
     '''
-    opts = pycompat.byteskwargs(opts)
-    force = opts.get('force')
-    rev = opts.get('rev')
-    delete = opts.get('delete')
-    rename = opts.get('rename')
-    inactive = opts.get('inactive')
+    force = opts.get(r'force')
+    rev = opts.get(r'rev')
+    delete = opts.get(r'delete')
+    rename = opts.get(r'rename')
+    inactive = opts.get(r'inactive')
 
     if delete and rename:
         raise error.Abort(_("--delete and --rename are incompatible"))