##// END OF EJS Templates
exchange: hit opargs with pycompat.strkwargs before **-ing it...
Augie Fackler -
r34217:e3cd7242 default
parent child Browse files
Show More
@@ -423,7 +423,7 b' def push(repo, remote, force=False, revs'
423 if opargs is None:
423 if opargs is None:
424 opargs = {}
424 opargs = {}
425 pushop = pushoperation(repo, remote, force, revs, newbranch, bookmarks,
425 pushop = pushoperation(repo, remote, force, revs, newbranch, bookmarks,
426 **opargs)
426 **pycompat.strkwargs(opargs))
427 if pushop.remote.local():
427 if pushop.remote.local():
428 missing = (set(pushop.repo.requirements)
428 missing = (set(pushop.repo.requirements)
429 - pushop.remote.local().supported)
429 - pushop.remote.local().supported)
General Comments 0
You need to be logged in to leave comments. Login now