summaryrefslogtreecommitdiff
path: root/sync-github-mirror
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2016-12-06 03:15:40 +0000
committerRay Strode <rstrode@redhat.com>2016-12-06 03:15:40 +0000
commitfb8819283d518488455a1922f84b4ff29c37e7f9 (patch)
tree4409877b278e3eff535f2e969c6d5ffaf5a64e57 /sync-github-mirror
parentb07efb1c5d655a2c06598c1909ed6a7dc27a8948 (diff)
sync-github-mirror: move config from /etc/github to /etc/github-mirror
It's more consistent this way.
Diffstat (limited to 'sync-github-mirror')
-rwxr-xr-xsync-github-mirror2
1 files changed, 1 insertions, 1 deletions
diff --git a/sync-github-mirror b/sync-github-mirror
index e1b70d4..1032fac 100755
--- a/sync-github-mirror
+++ b/sync-github-mirror
@@ -51,7 +51,7 @@ class GitHub:
def __init__ (self):
config = ConfigParser.ConfigParser()
try:
- config.read(os.path.expanduser('/etc/github/mirror.cfg'))
+ config.read(os.path.expanduser('/etc/github-mirror/mirror.cfg'))
self.user = config.get('Github', 'user')
self.pw = config.get('Github', 'password')
except ConfigParser.NoSectionError: