Changeset cd5d16e


Ignore:
Timestamp:
Dec 7, 2010 3:07:28 PM (13 years ago)
Author:
Ted Faber <faber@…>
Branches:
axis_example, compt_changes, info-ops, master
Children:
fbee30a
Parents:
8445caf
Message:

Convert bytearrays to strings to hash.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fedd/federation/util.py

    r8445caf rcd5d16e  
    360360    # This should be a one-iteration loop
    361361    for c in context.credentials():
    362         ids.add(c.issuer_cert())
    363         attrs.add(c.attribute_cert())
     362        ids.add(str(c.issuer_cert()))
     363        attrs.add(str(c.attribute_cert()))
    364364
    365365    return list(ids), list(attrs)
Note: See TracChangeset for help on using the changeset viewer.