##// END OF EJS Templates
py3: fix kwargs handling in hgext/split.py...
Pulkit Goyal -
r38080:5ba0cf22 default
parent child Browse files
Show More
@@ -60,6 +60,7 b' def split(ui, repo, *revs, **opts):'
60 By default, rebase connected non-obsoleted descendants onto the new
60 By default, rebase connected non-obsoleted descendants onto the new
61 changeset. Use --no-rebase to avoid the rebase.
61 changeset. Use --no-rebase to avoid the rebase.
62 """
62 """
63 opts = pycompat.byteskwargs(opts)
63 revlist = []
64 revlist = []
64 if opts.get('rev'):
65 if opts.get('rev'):
65 revlist.append(opts.get('rev'))
66 revlist.append(opts.get('rev'))
General Comments 0
You need to be logged in to leave comments. Login now