diff options
author | Ray Strode <rstrode@redhat.com> | 2016-12-06 03:15:40 +0000 |
---|---|---|
committer | Ray Strode <rstrode@redhat.com> | 2016-12-06 03:15:40 +0000 |
commit | fb8819283d518488455a1922f84b4ff29c37e7f9 (patch) | |
tree | 4409877b278e3eff535f2e969c6d5ffaf5a64e57 /sync-github-mirror | |
parent | b07efb1c5d655a2c06598c1909ed6a7dc27a8948 (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-x | sync-github-mirror | 2 |
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: |