Commit a81a56e8 authored by vapier@chromium.org's avatar vapier@chromium.org

gclient: stop using deprecated except syntax

The newer form works with python2 and python3.

Review URL: https://codereview.chromium.org/1436763002

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@297517 0039d316-1c4b-4281-b951-d872f2087c98
parent bb79beaa
...@@ -638,7 +638,7 @@ class Dependency(gclient_utils.WorkItem, DependencySettings): ...@@ -638,7 +638,7 @@ class Dependency(gclient_utils.WorkItem, DependencySettings):
# Eval the content. # Eval the content.
try: try:
exec(deps_content, global_scope, local_scope) exec(deps_content, global_scope, local_scope)
except SyntaxError, e: except SyntaxError as e:
gclient_utils.SyntaxErrorToError(filepath, e) gclient_utils.SyntaxErrorToError(filepath, e)
if use_strict: if use_strict:
for key, val in local_scope.iteritems(): for key, val in local_scope.iteritems():
...@@ -983,7 +983,7 @@ class Dependency(gclient_utils.WorkItem, DependencySettings): ...@@ -983,7 +983,7 @@ class Dependency(gclient_utils.WorkItem, DependencySettings):
start_time = time.time() start_time = time.time()
gclient_utils.CheckCallAndFilterAndHeader( gclient_utils.CheckCallAndFilterAndHeader(
hook, cwd=self.root.root_dir, always=True) hook, cwd=self.root.root_dir, always=True)
except (gclient_utils.Error, subprocess2.CalledProcessError), e: except (gclient_utils.Error, subprocess2.CalledProcessError) as e:
# Use a discrete exit status code of 2 to indicate that a hook action # Use a discrete exit status code of 2 to indicate that a hook action
# failed. Users of this script may wish to treat hook action failures # failed. Users of this script may wish to treat hook action failures
# differently from VC failures. # differently from VC failures.
...@@ -1008,7 +1008,7 @@ class Dependency(gclient_utils.WorkItem, DependencySettings): ...@@ -1008,7 +1008,7 @@ class Dependency(gclient_utils.WorkItem, DependencySettings):
start_time = time.time() start_time = time.time()
gclient_utils.CheckCallAndFilterAndHeader( gclient_utils.CheckCallAndFilterAndHeader(
hook, cwd=self.root.root_dir, always=True) hook, cwd=self.root.root_dir, always=True)
except (gclient_utils.Error, subprocess2.CalledProcessError), e: except (gclient_utils.Error, subprocess2.CalledProcessError) as e:
# Use a discrete exit status code of 2 to indicate that a hook action # Use a discrete exit status code of 2 to indicate that a hook action
# failed. Users of this script may wish to treat hook action failures # failed. Users of this script may wish to treat hook action failures
# differently from VC failures. # differently from VC failures.
...@@ -1248,7 +1248,7 @@ want to set 'managed': False in .gclient. ...@@ -1248,7 +1248,7 @@ want to set 'managed': False in .gclient.
self.config_content = content self.config_content = content
try: try:
exec(content, config_dict) exec(content, config_dict)
except SyntaxError, e: except SyntaxError as e:
gclient_utils.SyntaxErrorToError('.gclient', e) gclient_utils.SyntaxErrorToError('.gclient', e)
# Append any target OS that is not already being enforced to the tuple. # Append any target OS that is not already being enforced to the tuple.
...@@ -1443,7 +1443,7 @@ been automagically updated. The previous version is available at %s.old. ...@@ -1443,7 +1443,7 @@ been automagically updated. The previous version is available at %s.old.
return {} return {}
try: try:
exec(gclient_utils.FileRead(filename), scope) exec(gclient_utils.FileRead(filename), scope)
except SyntaxError, e: except SyntaxError as e:
gclient_utils.SyntaxErrorToError(filename, e) gclient_utils.SyntaxErrorToError(filename, e)
return scope['entries'] return scope['entries']
...@@ -2312,7 +2312,7 @@ def main(argv): ...@@ -2312,7 +2312,7 @@ def main(argv):
except KeyboardInterrupt: except KeyboardInterrupt:
gclient_utils.GClientChildren.KillAllRemainingChildren() gclient_utils.GClientChildren.KillAllRemainingChildren()
raise raise
except (gclient_utils.Error, subprocess2.CalledProcessError), e: except (gclient_utils.Error, subprocess2.CalledProcessError) as e:
print('Error: %s' % str(e), file=sys.stderr) print('Error: %s' % str(e), file=sys.stderr)
return 1 return 1
finally: finally:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment