~ubuntu-core-dev/ubuntu/hirsute/apport/ubuntu

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Brian Murray
  • Date: 2020-06-24 16:15:42 UTC
  • Revision ID: brian@canonical.com-20200624161542-fh9hv8j2v6grndqq
Fix pep8 errors regarding ambiguous variables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
                        distutils.log.info('Updating hashbang of %s', f)
76
76
                        lines[0] = new_hashbang
77
77
                        with open(f, 'w') as fd:
78
 
                            for l in lines:
79
 
                                fd.write(l)
 
78
                            for line in lines:
 
79
                                fd.write(line)
80
80
 
81
81
 
82
82
#