##// END OF EJS Templates
py3: use byteskwargs in sparse.py...
Gregory Szorc -
r35193:d8d06a93 default
parent child Browse files
Show More
@@ -82,6 +82,7 b' from mercurial import ('
82 extensions,
82 extensions,
83 hg,
83 hg,
84 match as matchmod,
84 match as matchmod,
85 pycompat,
85 registrar,
86 registrar,
86 sparse,
87 sparse,
87 util,
88 util,
@@ -286,6 +287,7 b' def debugsparse(ui, repo, *pats, **opts)'
286
287
287 Returns 0 if editing the sparse checkout succeeds.
288 Returns 0 if editing the sparse checkout succeeds.
288 """
289 """
290 opts = pycompat.byteskwargs(opts)
289 include = opts.get('include')
291 include = opts.get('include')
290 exclude = opts.get('exclude')
292 exclude = opts.get('exclude')
291 force = opts.get('force')
293 force = opts.get('force')
General Comments 0
You need to be logged in to leave comments. Login now