diff options
author | Rob Austein <sra@hactrn.net> | 2014-09-13 03:56:54 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-09-13 03:56:54 +0000 |
commit | 429adae788694f109174e35467c49d13b9533fe2 (patch) | |
tree | 9491a39aa30bac1c586ca81a246d8af6358a7bd1 /ca/tests/smoketest.py | |
parent | e123d08c9962f58525d98864b572d7987684dff0 (diff) |
Groundwork for Django ORM world conquest: sort out settings.py mess.
svn path=/branches/tk713/; revision=5948
Diffstat (limited to 'ca/tests/smoketest.py')
-rw-r--r-- | ca/tests/smoketest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ca/tests/smoketest.py b/ca/tests/smoketest.py index 32f11cc3..d1b15253 100644 --- a/ca/tests/smoketest.py +++ b/ca/tests/smoketest.py @@ -68,7 +68,7 @@ parser.add_argument("yaml_file", type = argparse.FileType("r"), help = "YAML description of test network") args = parser.parse_args() -cfg = rpki.config.parser(args.config, "smoketest", allow_missing = True) +cfg = rpki.config.parser(set_filename = args.config, section = "smoketest", allow_missing = True) # Load the YAML script early, so we can report errors ASAP |