diff options
author | David Pursehouse <david.pursehouse@sonymobile.com> | 2012-10-25 19:09:16 +0900 |
---|---|---|
committer | David Pursehouse <david.pursehouse@sonymobile.com> | 2012-10-25 19:09:38 +0900 |
commit | 89b5d495c329143f433d1fbe89c962c5ff1f81b4 (patch) | |
tree | 71ea634529f2457a6d20e079e37905e125c9bfad /pygerrit/ssh.py | |
parent | 1ce36c40f662b443e199e58a14863d136e435310 (diff) | |
download | pygerrit-89b5d495c329143f433d1fbe89c962c5ff1f81b4.tar.gz |
Python 2.6 style exception handling
Handle exceptions with the syntax:
except Exception as e
rather than:
except Exception, e
Change-Id: I883fdc1db541b9d2699712bfd2bd328261635005
Diffstat (limited to 'pygerrit/ssh.py')
-rw-r--r-- | pygerrit/ssh.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygerrit/ssh.py b/pygerrit/ssh.py index 712613c..2a019f5 100644 --- a/pygerrit/ssh.py +++ b/pygerrit/ssh.py @@ -122,6 +122,6 @@ class GerritSSHClient(SSHClient): gerrit_command.append(command) try: stdin, stdout, stderr = self.exec_command(" ".join(gerrit_command)) - except SSHException, err: + except SSHException as err: raise GerritError("Command execution error: %s" % err) return GerritSSHCommandResult(stdin, stdout, stderr) |