aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2011-04-10 13:20:04 -0400
committerBjoern B. Brandenburg <bbb@cs.unc.edu>2011-04-10 13:20:04 -0400
commit3dec38c73bceeb13f0ee6e19a04983c7c43d8106 (patch)
tree02a7c4078eba1498591c8a38ef8459ca7b22b183
parent3754940bf865349a583fce2ad48acd9e31c8f3bb (diff)
Allow override of standard split tag.
To provide more meaningful file names.
-rwxr-xr-xwsched.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/wsched.py b/wsched.py
index 8214bf0..4aa2f74 100755
--- a/wsched.py
+++ b/wsched.py
@@ -83,6 +83,7 @@ options = [
83 o(None, '--no-comments', action='store_true', dest='no_comments'), 83 o(None, '--no-comments', action='store_true', dest='no_comments'),
84 o('-w', '--col-width', action='store', type='int', dest='colwidth'), 84 o('-w', '--col-width', action='store', type='int', dest='colwidth'),
85 o(None, '--split', action='store_true', dest='want_split'), 85 o(None, '--split', action='store_true', dest='want_split'),
86 o('-f', '--key-format', action='store', dest='key_fmt'),
86 ] 87 ]
87 88
88defaults = { 89defaults = {