summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Jones <richard@mechanicalcat.net>2013-01-23 14:40:11 +1100
committerRichard Jones <richard@mechanicalcat.net>2013-01-23 14:40:11 +1100
commit9f1289a26d58209afcc0c35233e2da9cb9142ea7 (patch)
treeb333aff8fb4df68a245ad1850dccae075abaabec
parent6ee46e1e33050817235ed9533c87da22a8018f92 (diff)
downloaddecorator-9f1289a26d58209afcc0c35233e2da9cb9142ea7.tar.gz
fix so config may be found
-rwxr-xr-xsshkeys_update.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sshkeys_update.py b/sshkeys_update.py
index f81b495..1ceb3d7 100755
--- a/sshkeys_update.py
+++ b/sshkeys_update.py
@@ -1,7 +1,7 @@
#!/usr/bin/python
import config, store, os
standalone_py = os.path.join(os.path.dirname(__file__), 'standalone.py')
-c = config.Config("config.ini")
+c = config.Config("/data/pypi/config.ini")
s = store.Store(c)
cursor = s.get_cursor()
cursor.execute("lock table sshkeys in exclusive mode") # to prevent simultaneous updates