Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mercurial-devel
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mercurial
mercurial-devel
Commits
0e6f622f
Commit
0e6f622f
authored
13 years ago
by
Idan Kamara
Browse files
Options
Downloads
Patches
Plain Diff
tags: loosen IOError filtering when reading localtags
parent
4ab1e987
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mercurial/tags.py
+12
-9
12 additions, 9 deletions
mercurial/tags.py
with
12 additions
and
9 deletions
mercurial/tags.py
+
12
−
9
View file @
0e6f622f
...
...
@@ -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).
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment