~mvo/aptdaemon/fix-lp724735

« back to all changes in this revision

Viewing changes to aptdaemon/errors.py

  • Committer: sebi at glatzor
  • Date: 2011-03-24 04:19:04 UTC
  • mfrom: (601.1.1 trunk)
  • Revision ID: sebi@glatzor.de-20110324041904-uk4bad2bnm2gx3lv
Merge local changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
        AptDaemonError.__init__(self, "%s: %s" % (code, details % args))
75
75
        self.code = code
76
76
        self.details = details
77
 
        self.args = args
 
77
        self.details_args = args
78
78
 
79
79
    def __str__(self):
80
80
        return "Transaction failed: %s\n%s" % \