Submitter | Augie Fackler |
---|---|
Date | Feb. 8, 2013, 1:38 p.m. |
Message ID | <ea3f37a51ba131d66203.1360330735@augie-macbookair> |
Download | mbox | patch |
Permalink | /patch/830/ |
State | Accepted |
Commit | 5fe58f9332a462c7f279dafa8c16adc78b6b159b |
Headers | show |
Comments
Patch
diff --git a/hgext/convert/git.py b/hgext/convert/git.py --- a/hgext/convert/git.py +++ b/hgext/convert/git.py @@ -232,7 +232,7 @@ # Build complete list of tags, both annotated and bare ones for line in fh: line = line.strip() - if line.startswith("error:"): + if line.startswith("error:") or line.startswith("fatal:"): raise util.Abort(_('cannot read tags from %s') % self.path) node, tag = line.split(None, 1) if not tag.startswith(prefix):