Ignore:
Timestamp:
Jul 7, 2012 5:42:28 PM (12 years ago)
Author:
Ted Faber <faber@…>
Branches:
compt_changes, master
Children:
7718539
Parents:
cd5b279 (diff), d064566 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of tardis.deterlab.net:/var/local/git/fedd

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fedd/fedd_create.py

    rd064566 re062282  
    269269if opts.debug > 1: print >>sys.stderr, resp_dict
    270270
    271 proof = proof.from_dict(resp_dict.get('proof', {}))
    272 if proof and opts.auth_log:
    273     log_authentication(opts.auth_log, 'New (create)', 'succeeded', proof)
     271p = proof.from_dict(resp_dict.get('proof', {}))
     272if p and opts.auth_log:
     273    log_authentication(opts.auth_log, 'New (create)', 'succeeded', p)
    274274# Save the experiment ID certificate if we need it
    275275try:
     
    343343if e_fedid: print "fedid: %s" % e_fedid
    344344if st: print "status: %s" % st
    345 proof = proof.from_dict(resp_dict.get('proof', {}))
    346 if proof and opts.auth_log:
    347     log_authentication(opts.auth_log, 'Create', 'succeeded', proof)
     345#proof = proof.from_dict(resp_dict.get('proof', {}))
     346p_list = resp_dict.get('proof', {})
     347if p_list and opts.auth_log:
     348    for p in p_list:
     349        log_authentication(opts.auth_log, 'Create', 'succeeded',
     350                proof.from_dict(p))
Note: See TracChangeset for help on using the changeset viewer.