##// END OF EJS Templates
py3: use pycompat.byteskwargs() to convert opts keys to bytes...
Pulkit Goyal -
r36295:d822f3fb default
parent child Browse files
Show More
@@ -2267,7 +2267,7 b' def delete(ui, repo, *patches, **opts):'
2267 To stop managing a patch and move it into permanent history,
2267 To stop managing a patch and move it into permanent history,
2268 use the :hg:`qfinish` command."""
2268 use the :hg:`qfinish` command."""
2269 q = repo.mq
2269 q = repo.mq
2270 q.delete(repo, patches, opts)
2270 q.delete(repo, patches, pycompat.byteskwargs(opts))
2271 q.savedirty()
2271 q.savedirty()
2272 return 0
2272 return 0
2273
2273
General Comments 0
You need to be logged in to leave comments. Login now