Fix text typos. Update translations.

Merged: Remove PDFMiner from the requirments.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2017-08-27 13:38:54 -04:00
parent 31ba535dba
commit 9147b34409
1457 changed files with 9419 additions and 6324 deletions

View File

@@ -73,7 +73,7 @@ class HTTPPostAction(WorkflowAction):
)
except Exception as exception:
raise WorkflowStateActionError(
_('URL template error: {}'.format(exception))
_('URL template error: %s') % exception
)
logger.debug('URL template result: %s', url)
@@ -84,7 +84,7 @@ class HTTPPostAction(WorkflowAction):
)
except Exception as exception:
raise WorkflowStateActionError(
_('Payload template error: {}'.format(exception))
_('Payload template error: %s') % exception
)
logger.debug('payload template result: %s', result)
@@ -93,7 +93,7 @@ class HTTPPostAction(WorkflowAction):
payload = json.loads(result, strict=False)
except Exception as exception:
raise WorkflowStateActionError(
_('Payload JSON error: {}'.format(exception))
_('Payload JSON error: %s') % exception
)
logger.debug('payload json result: %s', payload)