# | Line 18 | Line 18 | info = pickle.load(infofile) | |
---|---|---|
18 | infofile.close() | |
19 | ||
20 | for job in info: | |
21 | < | if job.group == name: |
21 | > | if job.group in name or name == "all": |
22 | print '\t - %s' %(job.name) | |
23 | setattr(job,attribute,newvalue) | |
24 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |