# | Line 2 | Line 2 | |
---|---|---|
2 | import os | |
3 | import sys | |
4 | import datetime | |
5 | < | import argparse |
5 | > | from optparse import OptionParser |
6 | ||
7 | from OSUT3Analysis.Configuration.configurationOptions import * | |
8 | from OSUT3Analysis.Configuration.processingUtilities import * | |
9 | ||
10 | < | parser = argparse.ArgumentParser() |
10 | > | parser = OptionParser() |
11 | parser = set_commandline_arguments(parser) | |
12 | < | |
13 | < | arguments = parser.parse_args() |
12 | > | (arguments, args) = parser.parse_args() |
13 | ||
14 | if arguments.localConfig: | |
15 | sys.path.append(os.getcwd()) |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |