D1300: py3: handle keyword arguments in hgext/commitextras.py

2017-11-04 Thread pulkit (Pulkit Goyal)
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG901a18b03e00: py3: handle keyword arguments in 
hgext/commitextras.py (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D1300?vs=3237=3276

REVISION DETAIL
  https://phab.mercurial-scm.org/D1300

AFFECTED FILES
  hgext/commitextras.py

CHANGE DETAILS

diff --git a/hgext/commitextras.py b/hgext/commitextras.py
--- a/hgext/commitextras.py
+++ b/hgext/commitextras.py
@@ -46,7 +46,7 @@
 origcommit = repo.commit
 try:
 def _wrappedcommit(*innerpats, **inneropts):
-extras = opts.get('extra')
+extras = opts.get(r'extra')
 if extras:
 for raw in extras:
 if '=' not in raw:
@@ -65,7 +65,7 @@
 msg = _("key '%s' is used internally, can't be set "
 "manually")
 raise error.Abort(msg % k)
-inneropts['extra'][k] = v
+inneropts[r'extra'][k] = v
 return origcommit(*innerpats, **inneropts)
 
 # This __dict__ logic is needed because the normal



To: pulkit, #hg-reviewers, yuja
Cc: mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


D1300: py3: handle keyword arguments in hgext/commitextras.py

2017-11-02 Thread pulkit (Pulkit Goyal)
pulkit created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REPOSITORY
  rHG Mercurial

REVISION DETAIL
  https://phab.mercurial-scm.org/D1300

AFFECTED FILES
  hgext/commitextras.py

CHANGE DETAILS

diff --git a/hgext/commitextras.py b/hgext/commitextras.py
--- a/hgext/commitextras.py
+++ b/hgext/commitextras.py
@@ -46,7 +46,7 @@
 origcommit = repo.commit
 try:
 def _wrappedcommit(*innerpats, **inneropts):
-extras = opts.get('extra')
+extras = opts.get(r'extra')
 if extras:
 for raw in extras:
 if '=' not in raw:
@@ -65,7 +65,7 @@
 msg = _("key '%s' is used internally, can't be set "
 "manually")
 raise error.Abort(msg % k)
-inneropts['extra'][k] = v
+inneropts[r'extra'][k] = v
 return origcommit(*innerpats, **inneropts)
 
 # This __dict__ logic is needed because the normal



To: pulkit, #hg-reviewers
Cc: mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel