python-modernize automated changes: misc. minor stuff

This commit is contained in:
Thomas Waldmann 2013-05-18 17:57:43 +02:00
parent 1b753cb1b1
commit cfbfff2d26
2 changed files with 3 additions and 2 deletions

View file

@ -113,7 +113,7 @@ class LimitedLoaderMockWrapper(object):
def __getattr__(self, name):
if name in ('archive', 'get_filename'):
msg = 'Mocking a loader which does not have `%s.`' % name
raise AttributeError, msg
raise AttributeError(msg)
return getattr(self.loader, name)