Merge pull request #211 from kevgliss/hotfix

fixing an issue were urllib does not like unicode
This commit is contained in:
kevgliss 2016-01-11 10:38:45 -08:00
commit d87ace8c89
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ def process_options(options):
if options.get('validityEnd'):
end_date, period = get_default_issuance(options)
data['specificEndDate'] = end_date
data['specificEndDate'] = str(end_date)
data['validityPeriod'] = period
return data