##// END OF EJS Templates
py3: use '%s' instead of %r in hgext/convert/subversion.py...
Pulkit Goyal -
r40251:4d6019c0 default
parent child Browse files
Show More
@@ -1138,7 +1138,7 b' class svn_sink(converter_sink, commandli'
1138 1138 path = os.path.realpath(path)
1139 1139 if os.path.isdir(os.path.dirname(path)):
1140 1140 if not os.path.exists(os.path.join(path, 'db', 'fs-type')):
1141 ui.status(_('initializing svn repository %r\n') %
1141 ui.status(_("initializing svn repository '%s'\n") %
1142 1142 os.path.basename(path))
1143 1143 commandline(ui, 'svnadmin').run0('create', path)
1144 1144 created = path
@@ -1149,7 +1149,7 b' class svn_sink(converter_sink, commandli'
1149 1149
1150 1150 wcpath = os.path.join(encoding.getcwd(), os.path.basename(path) +
1151 1151 '-wc')
1152 ui.status(_('initializing svn working copy %r\n')
1152 ui.status(_("initializing svn working copy '%s'\n")
1153 1153 % os.path.basename(wcpath))
1154 1154 self.run0('checkout', path, wcpath)
1155 1155
General Comments 0
You need to be logged in to leave comments. Login now