##// 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 82 extensions,
83 83 hg,
84 84 match as matchmod,
85 pycompat,
85 86 registrar,
86 87 sparse,
87 88 util,
@@ -286,6 +287,7 b' def debugsparse(ui, repo, *pats, **opts)'
286 287
287 288 Returns 0 if editing the sparse checkout succeeds.
288 289 """
290 opts = pycompat.byteskwargs(opts)
289 291 include = opts.get('include')
290 292 exclude = opts.get('exclude')
291 293 force = opts.get('force')
General Comments 0
You need to be logged in to leave comments. Login now