aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorben2018-09-29 00:17:53 +0200
committerben2018-09-29 00:17:53 +0200
commit04eb07f3210d91fadf6b75187bdc72ce713f587d (patch)
treeb064be8f6089a9e41062a653048f0a44b1692409
parentcaaaaafeb09165971b49a948bab1ec2189031319 (diff)
downloadtruepolyglot-04eb07f3210d91fadf6b75187bdc72ce713f587d.tar.gz
truepolyglot-04eb07f3210d91fadf6b75187bdc72ce713f587d.tar.bz2
truepolyglot-04eb07f3210d91fadf6b75187bdc72ce713f587d.tar.xz
Fix help message1.5.1
-rwxr-xr-xtruepolyglot6
1 files changed, 3 insertions, 3 deletions
diff --git a/truepolyglot b/truepolyglot
index 5208e64..34950ff 100755
--- a/truepolyglot
+++ b/truepolyglot
@@ -20,11 +20,11 @@ def main():
' The format is closest to ZIP.\n' +
'* szippdf: Generate a file valid as ZIP and PDF.' +
' The format is strictly a ZIP.' +
- ' Archive is modified.'
+ ' Archive is modified.\n' +
'* pdfraw: Generate a file strictly valid as a PDF ' +
- ' with a custom first object content.')
+ 'with a custom first object content.')
usage_str = '%(prog)s format [options] output-file'
- epilog_str = 'TruePolyglot v1.5'
+ epilog_str = 'TruePolyglot v1.5.1'
frm = argparse.RawTextHelpFormatter
parser = argparse.ArgumentParser(description=description_str,
epilog=epilog_str,