diff options
Diffstat (limited to 'push.py')
-rwxr-xr-x | push.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ try: except IndexError: cfg = os.path.dirname(os.path.realpath(__file__)) + '/push.cfg' -with open(cfg) as fh: +with open(cfg, 'r') as fh: maps = yaml.load(fh) sender_map = maps.get('senders', []) |