aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2014-08-13 20:54:37 -0400
committerThibaut Horel <thibaut.horel@gmail.com>2014-08-13 20:54:37 -0400
commitfa3c7d1ed97891fe901bbeb34a93cc354d9d724b (patch)
treec4b4d3776d2784a0bb51718d14ba0c58d5d0c9d0
parent050d847c4ce9bb34317c3640abc59f7da4a369c0 (diff)
downloadtabletext-fa3c7d1ed97891fe901bbeb34a93cc354d9d724b.tar.gz
Add epilog for the command line utility
-rw-r--r--tabletext.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tabletext.py b/tabletext.py
index 8675cf4..7c8f846 100644
--- a/tabletext.py
+++ b/tabletext.py
@@ -112,10 +112,14 @@ def main():
class MyFormatter(ArgumentDefaultsHelpFormatter,
RawDescriptionHelpFormatter):
pass
+
parser = ArgumentParser(formatter_class=MyFormatter,
description="""
Format the input into a table with borders, writing the result to standard
-output. Each TAB separated line from FILE will become a row in the output.""")
+output. Each TAB separated line from FILE will become a row in the output.""",
+ epilog="""
+For more details and bug reports, see: https://github.com/Thibauth/tabletext"""
+ )
parser.add_argument("--hor", help="horizontal line character",
metavar="CHAR", default="─")
parser.add_argument("--ver", help="vertical line character",