~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/poppy/twistedftp.py

  • Committer: Julian Edwards
  • Date: 2011-12-07 12:34:15 UTC
  • mto: This revision was merged to the branch mainline in revision 14492.
  • Revision ID: julian.edwards@canonical.com-20111207123415-e6krl9a1ihhs8de2
suggestion from jtv

Show diffs side-by-side

added added

removed removed

Lines of Context:
171
171
            log.info("GPGVerificationError, extra debug output follows:")
172
172
            for attr in ("args", "code", "signatures", "source"):
173
173
                if hasattr(error, attr):
174
 
                    log.info("%s: %s" % (attr, error.attr))
 
174
                    log.info("%s: %s", attr, error.attr)
175
175
            return ("Changes file must be signed with a valid GPG "
176
176
                    "signature: %s" % error)
177
177