aboutsummaryrefslogtreecommitdiff
path: root/rpkid/tests/yamlconf.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2012-08-30 16:09:05 +0000
committerRob Austein <sra@hactrn.net>2012-08-30 16:09:05 +0000
commit3731077e6bfbcc5a949d2f5b768e52757d744802 (patch)
treea26b13dc29a59b6c4dd30141ec66568f43f79203 /rpkid/tests/yamlconf.py
parente252a23ca2502fa83d234bb4491efae02aeec30d (diff)
Iain really wants "irdbd.sql" instead of "irdb.sql". The latter is
technically correct, but there are already enough violations of the naming scheme that one more won't matter. svn path=/branches/tk274/; revision=4677
Diffstat (limited to 'rpkid/tests/yamlconf.py')
-rw-r--r--rpkid/tests/yamlconf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/tests/yamlconf.py b/rpkid/tests/yamlconf.py
index 9fd210bf..34ae8ba0 100644
--- a/rpkid/tests/yamlconf.py
+++ b/rpkid/tests/yamlconf.py
@@ -494,7 +494,7 @@ class allocation(object):
username = config_overrides["irdbd_sql_username"]
password = config_overrides["irdbd_sql_password"]
cmd = ("mysqldump", "-u", username, "-p" + password, self.irdb_name)
- with open(self.path("irdb.sql"), "w") as f:
+ with open(self.path("irdbd.sql"), "w") as f:
print "Writing", f.name
subprocess.check_call(cmd, stdout = f)