diff options
author | emkael <emkael@tlen.pl> | 2018-02-21 15:11:17 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2018-02-21 15:11:17 +0100 |
commit | 88ba13db8ade09bc68f94f5df6bf0e92509121ca (patch) | |
tree | 8dd84c30dd5aaeb645f07615de4d4c7614a8f6e4 | |
parent | be32d91f4708a926f43e825b767f68bfd8410d87 (diff) |
?
-rw-r--r-- | jfr_playoff/settings.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/jfr_playoff/settings.py b/jfr_playoff/settings.py index 1a6b795..487fae8 100644 --- a/jfr_playoff/settings.py +++ b/jfr_playoff/settings.py @@ -27,11 +27,9 @@ class PlayoffSettings(object): try: remote_config = new_config if new_config is not None else json.loads( urllib.urlopen(remote_url).read().decode('utf-8-sig')) - print remote_config for key, value in remote_config.iteritems(): if (key not in base_config) or overwrite: base_config[key] = value - print base_config except Exception as e: print 'WARNING: unable to merge remote config: %s' % (str(e)) if remote_url is not None: |