py3: use r'' to prevent conversion to bytes by transformer
authorPulkit Goyal <7895pulkit@gmail.com>
Thu, 22 Jun 2017 03:24:12 +0530
changeset 33036 fac9941bd542
parent 33035 daccadd75760
child 33037 24c0a9a7fa86
py3: use r'' to prevent conversion to bytes by transformer
hgext/share.py
--- a/hgext/share.py	Thu Jun 22 03:22:30 2017 +0530
+++ b/hgext/share.py	Thu Jun 22 03:24:12 2017 +0530
@@ -132,7 +132,7 @@
     if pool:
         pool = util.expandpath(pool)
 
-    opts['shareopts'] = dict(
+    opts[r'shareopts'] = dict(
         pool=pool,
         mode=ui.config('share', 'poolnaming', 'identity'),
     )