# | Line 22 | Line 22 | class PsetManipulator: | |
---|---|---|
22 | exit_code = os.system(cmd) | |
23 | if exit_code != 0 : | |
24 | msg = 'Could not convert '+self.pset+' into a python Dictionary \n' | |
25 | < | msg += 'Failed to execute '+cmd+'\n' |
26 | < | msg += 'Exit code : '+exit_code |
25 | > | msg += 'Failed to execute \n'+cmd+'\n' |
26 | > | msg += 'Exit code : '+str(exit_code) |
27 | ||
28 | raise CrabException(msg) | |
29 | pass |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |