Changeset 1233
- Timestamp:
- 22/06/06 09:38:39 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/python/NDG/SimpleCA.py
r1232 r1233 347 347 348 348 if errMsg is not None: 349 raise SimpleCAPassPhraseError (errMsg)349 raise SimpleCAPassPhraseError, errMsg 350 350 351 351 … … 388 388 if self.__caPassPhrase is None: 389 389 raise SimpleCAError, "CA Pass-phrase must be set in order to " + \ 390 "sign a certificate request" )390 "sign a certificate request" 391 391 392 392 … … 409 409 if not isinstance(certReqFilePath, basestring): 410 410 raise SimpleCAError, \ 411 "certReqFilePath input must be a valid string" )411 "certReqFilePath input must be a valid string" 412 412 else: 413 413 # The certificate request msut be input via either of the two
Note: See TracChangeset
for help on using the changeset viewer.