~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-09 10:29:10 UTC
  • mto: This revision was merged to the branch mainline in revision 14492.
  • Revision ID: julian.edwards@canonical.com-20111209102910-mpy2059d7t4mteup
fix stupid thinko

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, getattr(error, attr))
175
175
            return ("Changes file must be signed with a valid GPG "
176
176
                    "signature: %s" % error)
177
177