From 9bb58ca77950ba56bf5216cf5fd4c3a2ccbf9c14 Mon Sep 17 00:00:00 2001 From: Chaz Date: Wed, 24 Nov 2010 15:16:09 -0600 Subject: [PATCH] Adds the worker id command line option --- pyfpdb/Options.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyfpdb/Options.py b/pyfpdb/Options.py index b8be3d2a..6369b485 100644 --- a/pyfpdb/Options.py +++ b/pyfpdb/Options.py @@ -59,6 +59,8 @@ def fpdb_options(): help=_("File to be split is a PokerStars or Full Tilt Poker archive file")) parser.add_option("-n", "--numhands", dest="hands", default="100", type="int", help=_("How many hands do you want saved to each file. Default is 100")) + parser.add_option("-w", "--workerid", dest="workerid", default="0", type="int", + help=_("Specifies the worker id running the script")) (options, argv) = parser.parse_args()