subrepo: use [0-9] instead of [\d] in svn subrepo regex

The \d was used in a normal (not raw) string and was only passed
through to re.search because Python does not define that escape
character itself. Using 0-9 makes it clearer what is happening.
This commit is contained in:
Martin Geisler 2010-08-27 13:03:57 +02:00
parent aaaf3eb673
commit 9c67cf78d7

View File

@ -410,7 +410,7 @@ class svnsubrepo(abstractsubrepo):
raise util.Abort(_('cannot commit svn externals'))
commitinfo = self._svncommand(['commit', '-m', text])
self._ui.status(commitinfo)
newrev = re.search('Committed revision ([\d]+).', commitinfo)
newrev = re.search('Committed revision ([0-9]+).', commitinfo)
if not newrev:
raise util.Abort(commitinfo.splitlines()[-1])
newrev = newrev.groups()[0]
@ -427,7 +427,7 @@ class svnsubrepo(abstractsubrepo):
def get(self, state):
status = self._svncommand(['checkout', state[0], '--revision', state[1]])
if not re.search('Checked out revision [\d]+.', status):
if not re.search('Checked out revision [0-9]+.', status):
raise util.Abort(status.splitlines()[-1])
self._ui.status(status)