Mercurial > hg
changeset 18174:56ef99fbd6f2
commandserver: clean up use of two-argument raise
This makes any attempt to port to Python 3 harder, and the new syntax
is supported in 2.4 already.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Tue, 01 Jan 2013 12:50:04 -0600 |
parents | 9916d104c485 |
children | fd3f8b87b682 |
files | mercurial/commandserver.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commandserver.py Mon Dec 31 21:50:35 2012 -0600 +++ b/mercurial/commandserver.py Tue Jan 01 12:50:04 2013 -0600 @@ -42,7 +42,7 @@ def __getattr__(self, attr): if attr in ('isatty', 'fileno'): - raise AttributeError, attr + raise AttributeError(attr) return getattr(self.in_, attr) class channeledinput(object): @@ -122,7 +122,7 @@ def __getattr__(self, attr): if attr in ('isatty', 'fileno'): - raise AttributeError, attr + raise AttributeError(attr) return getattr(self.in_, attr) class server(object):