X-Git-Url: http://git.onelab.eu/?p=sfa.git;a=blobdiff_plain;f=sfa%2Fplanetlab%2Fplshell.py;h=15c58b69cd0647723e33de51e3785205ac8ae14e;hp=16af128df186fcae3aba132958eb45fabe9d9de9;hb=ecc85e0b923922cf7117d29b380f5284edb88f21;hpb=fad16c7d54b658b37a9b42fbee47b0d4f51cb8ec diff --git a/sfa/planetlab/plshell.py b/sfa/planetlab/plshell.py index 16af128d..15c58b69 100644 --- a/sfa/planetlab/plshell.py +++ b/sfa/planetlab/plshell.py @@ -89,7 +89,7 @@ class PlShell: if name in PlShell.direct_calls: actual_name=name if name in PlShell.alias_calls: actual_name=PlShell.alias_calls[name] if not actual_name: - raise Exception, "Illegal method call %s for PL driver"%(name) + raise Exception("Illegal method call %s for PL driver"%(name)) result=getattr(self.proxy, actual_name)(self.plauth, *args, **kwds) logger.debug('PlShell %s (%s) returned ... '%(name,actual_name)) return result