Skip to content

Commit 2653d8b

Browse files
committed
Neater argparse description
1 parent 7d1adca commit 2653d8b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

processinghistory/cmdline/historyview.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ def getCmdargs():
1818
Get command line arguments
1919
"""
2020
defaultWidth = shutil.get_terminal_size().columns
21-
p = argparse.ArgumentParser(
22-
description=("Display simple text view of processing history " +
23-
"from the given file. Default will display the metadata " +
24-
"dictionary of the given file."))
21+
p = argparse.ArgumentParser(description="""
22+
Display simple text view of processing history from the given file.
23+
Default will display the metadata dictionary of the given file.
24+
""")
2525
p.add_argument("filename", help="Name of file to read processing history from")
2626
p.add_argument("--ancestor", default=None, type=str,
2727
help=("Filename (or key tuple string) of " +

0 commit comments

Comments
 (0)