Submitter | Pierre-Yves David |
---|---|
Date | Dec. 7, 2015, 7:33 p.m. |
Message ID | <4469287024fbad9588cb.1449516831@marginatus.alto.octopoid.net> |
Download | mbox | patch |
Permalink | /patch/11907/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/bookmarks.py b/mercurial/bookmarks.py --- a/mercurial/bookmarks.py +++ b/mercurial/bookmarks.py @@ -103,10 +103,12 @@ class bmstore(dict): in a format equal to those of localtags. We also store a backup of the previous state in undo.bookmarks that can be copied back on rollback. ''' + msg = 'bm.write() is deprecated, use bm.recordchange(transaction)' + self._repo.ui.deprecwarn(msg, '3.7') if self._clean: return repo = self._repo if (repo.ui.configbool('devel', 'all-warnings') or repo.ui.configbool('devel', 'check-locks')):