Changeset 7239 for main/waeup.sirp


Ignore:
Timestamp:
29 Nov 2011, 07:09:05 (13 years ago)
Author:
Henrik Bettermann
Message:

Use prefix for SIRPPrincipal initialization.

I don't know exactly what the authentication prefix is, but it might be important?!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/authentication.py

    r7236 r7239  
    101101                 phone=None, prefix=None):
    102102        self.id = id
     103        if prefix is not None:
     104            self.id = '%s.%s' % (prefix, self.id)
    103105        self.title = title
    104106        self.description = description
     
    132134            self.info.email,
    133135            self.info.phone,
     136            authentication.prefix,
    134137            )
    135138        notify(
Note: See TracChangeset for help on using the changeset viewer.