# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1498082052 -19800 # Node ID fac9941bd542e3621082b157fb2f3aff09cfb1b7 # Parent daccadd75760193252e0ca5487711e7bafe369ec py3: use r'' to prevent conversion to bytes by transformer diff -r daccadd75760 -r fac9941bd542 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'), )