/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to gpg.py

  • Committer: Daniel Schierbeck
  • Date: 2007-11-21 20:04:21 UTC
  • mto: (450.1.11 trunk) (399.1.17 signatures)
  • mto: This revision was merged to the branch mainline in revision 458.
  • Revision ID: daniel.schierbeck@gmail.com-20071121200421-tays6ie3oa6yqjag
Fixed bug in GPG module.

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
 
83
83
        if resp.has_key('VALIDSIG'):
84
84
            L = string.split(resp['VALIDSIG'], None)
85
 
            sig.fingerprint, sig.creation_date, sig.timestamp = L
 
85
            sig.fingerprint, sig.creation_date, sig.timestamp = L[0], L[1], L[2]
86
86
 
87
87
        if resp.has_key('SIG_ID'):
88
88
            L = string.split(resp['SIG_ID'], None)