41c41
< raise AttributeError, "can only update from Data object"
---
> raise AttributeError("can only update from Data object")
55,57c55,57
< raise AttributeError, \
< "%s specified more than once old: %s new: %s" % \
< (key, self.__dict__[key], val)
---
> raise AttributeError(
> "%s specified more than once old: %s new: %s" % \
> (key, self.__dict__[key], val))
62,63c62,63
< raise AttributeError, \
< "%s specified more than once in %s" % (k, key)
---
> raise AttributeError(
> "%s specified more than once in %s" % (k, key))
68,70c68,70
< raise AttributeError, \
< "conflicting values for system: '%s'/'%s'" % \
< (self.system, obj.system)
---
> raise AttributeError(
> "conflicting values for system: '%s'/'%s'" % \
> (self.system, obj.system))
99c99
< raise KeyError, "Key '%s' not found" % attr
---
> raise KeyError("Key '%s' not found" % attr)
134,135c134,135
< raise AttributeError, \
< "All options are not from the same Configuration"
---
> raise AttributeError(
> "All options are not from the same Configuration")
312c312
< raise AttributeError, "child from the wrong configuration"
---
> raise AttributeError("child from the wrong configuration")
390c390
< raise AttributeError, "job '%s' not found" % jobname
---
> raise AttributeError("job '%s' not found" % jobname)
417,418c417
< raise AttributeError, \
< "Could not find file '%s'" % jobfile
---
> raise AttributeError("Could not find file '%s'" % jobfile)
423c422
< raise ImportError, 'cannot import name conf from %s' % jobfile
---
> raise ImportError('cannot import name conf from %s' % jobfile)
451c450
< raise AttributeError, usage
---
> raise AttributeError(usage)
455c454
< raise AttributeError, usage
---
> raise AttributeError(usage)