Skip to content

Commit

Permalink
Issue 4490 - Update buildtools dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
kzar committed Oct 4, 2016
1 parent fa55e33 commit 511827f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dependencies
@@ -1,3 +1,3 @@
_root = hg:https://hg.adblockplus.org/ git:https://github.com/adblockplus/
_self = buildtools/ensure_dependencies.py
buildtools = buildtools hg:d865256754db git:4454e6b
buildtools = buildtools hg:595808987fd9 git:5f8a4c2
4 changes: 2 additions & 2 deletions ensure_dependencies.py
Expand Up @@ -220,7 +220,7 @@ def read_deps(repodir):
if spec:
result[key] = spec
return result
except IOError, e:
except IOError as e:
if e.errno != errno.ENOENT:
raise
return None
Expand Down Expand Up @@ -332,7 +332,7 @@ def resolve_deps(repodir, level=0, self_update=True, overrideroots=None, skipdep
try:
with io.open(source, 'rb') as handle:
sourcedata = handle.read()
except IOError, e:
except IOError as e:
if e.errno != errno.ENOENT:
raise
logging.warning("File %s doesn't exist, skipping self-update" % source)
Expand Down

0 comments on commit 511827f

Please sign in to comment.