D2210: util: call warnings.warn() with a sysstr in nouideprecwarn
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Tue Feb 13 03:48:29 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG02ed94dd9fd6: util: call warnings.warn() with a sysstr in nouideprecwarn (authored by durin42, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D2210?vs=5602&id=5609
REVISION DETAIL
https://phab.mercurial-scm.org/D2210
AFFECTED FILES
mercurial/util.py
CHANGE DETAILS
diff --git a/mercurial/util.py b/mercurial/util.py
--- a/mercurial/util.py
+++ b/mercurial/util.py
@@ -253,7 +253,7 @@
if _dowarn:
msg += ("\n(compatibility will be dropped after Mercurial-%s,"
" update your code.)") % version
- warnings.warn(msg, DeprecationWarning, stacklevel + 1)
+ warnings.warn(pycompat.sysstr(msg), DeprecationWarning, stacklevel + 1)
DIGESTS = {
'md5': hashlib.md5,
To: durin42, #hg-reviewers, indygreg
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list