~apport-hackers/apport/trunk

« back to all changes in this revision

Viewing changes to problem_report.py

  • Committer: Brian Murray
  • Date: 2019-05-20 18:54:29 UTC
  • Revision ID: brian@canonical.com-20190520185429-mvl3yz2dhzs5jaug
bin/apport-unpack, problem_report.py: define unicode as a variable to quiet pyflakes

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
    _python2 = True
25
25
else:
26
26
    from collections import UserDict
 
27
    unicode = str  # pyflakes3
27
28
    _python2 = False
28
29
 
29
30