diff options
| author | 2019-02-24 20:37:17 +0000 | |
|---|---|---|
| committer | 2019-02-24 20:37:17 +0000 | |
| commit | 0444f9c0b91612d68681519c16fa20a30e0510fa (patch) | |
| tree | da704e263eb34723200479178322f8692ca56588 /modules/imgur.py | |
| parent | Update imgur.py (diff) | |
Update imgur.py
Remove debug logging cruft
Diffstat (limited to 'modules/imgur.py')
| -rw-r--r-- | modules/imgur.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/imgur.py b/modules/imgur.py index 2e198c8f..31867cda 100644 --- a/modules/imgur.py +++ b/modules/imgur.py @@ -1,7 +1,7 @@ #--require-config imgur-api-key import re, json -from src import ModuleManager, utils, EventManager, Logging +from src import ModuleManager, utils, EventManager from datetime import datetime REGEX_IMAGE = re.compile("https?://(?:i\.)?imgur.com/(\w+)") @@ -88,8 +88,6 @@ class Module(ModuleManager.BaseModule): json=True) if result and result.data["success"]: - # Logging.Log.debug("%s", result.data["data"]) - data = result.data["data"] text = "" |
