Skip to content
Snippets Groups Projects
Commit 0e6f622f authored by Idan Kamara's avatar Idan Kamara
Browse files

tags: loosen IOError filtering when reading localtags

parent 4ab1e987
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,5 @@
from node import nullid, bin, hex, short
from i18n import _
import os.path
import encoding
import error
......@@ -16,5 +15,6 @@
import encoding
import error
import errno
def findglobaltags(ui, repo, alltags, tagtypes):
'''Find global tags in repo by reading .hgtags from every head that
......@@ -60,6 +60,4 @@
def readlocaltags(ui, repo, alltags, tagtypes):
'''Read local tags in repo. Update alltags and tagtypes.'''
try:
# localtags is in the local encoding; re-encode to UTF-8 on
# input for consistency with the rest of this module.
data = repo.opener("localtags").read()
......@@ -65,10 +63,15 @@
data = repo.opener("localtags").read()
filetags = _readtags(
ui, repo, data.splitlines(), "localtags",
recode=encoding.fromlocal)
_updatetags(filetags, "local", alltags, tagtypes)
except IOError:
pass
except IOError, inst:
if inst.errno != errno.ENOENT:
raise
return
# localtags is in the local encoding; re-encode to UTF-8 on
# input for consistency with the rest of this module.
filetags = _readtags(
ui, repo, data.splitlines(), "localtags",
recode=encoding.fromlocal)
_updatetags(filetags, "local", alltags, tagtypes)
def _readtags(ui, repo, lines, fn, recode=None):
'''Read tag definitions from a file (or any source of lines).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment