changeset 33803:fac9941bd542

py3: use r'' to prevent conversion to bytes by transformer
author Pulkit Goyal <7895pulkit@gmail.com>
date Thu, 22 Jun 2017 03:24:12 +0530
parents daccadd75760
children 24c0a9a7fa86
files hgext/share.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/share.py
+++ b/hgext/share.py
@@ -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'),
     )