~nskaggs/juju-release-tools/generate-release-notes

« back to all changes in this revision

Viewing changes to validate_streams.py

  • Committer: Aaron Bentley
  • Date: 2015-10-09 16:40:49 UTC
  • mto: (218.1.29 generate-simplestreams)
  • mto: This revision was merged to the branch mainline in revision 222.
  • Revision ID: aaron.bentley@canonical.com-20151009164049-a52mhysyt12ppogy
Fix lint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
            if real_name in new_agents:
103
103
                real_agent = new_agents[real_name]
104
104
                found_agent = new_agents[found_name]
105
 
                if (found_agent['path'] == real_agent['path']
106
 
                        and found_agent['sha256'] == real_agent['sha256']):
 
105
                if (found_agent['path'] == real_agent['path'] and
 
106
                        found_agent['sha256'] == real_agent['sha256']):
107
107
                    found_errors.remove(found_name)
108
108
 
109
109