# | Line 3 | Line 3 | |
---|---|---|
3 | import sys | |
4 | import os | |
5 | from array import * | |
6 | < | import argparse |
6 | > | from optparse import OptionParser |
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 options.localConfig: | |
15 | sys.path.append(os.getcwd()) |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |