diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-06-21 00:55:18 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-06-21 00:55:18 +0300 |
commit | a782cca17e2702e4b0b133eefd2bf7c8e792781c (patch) | |
tree | 59f9a29675a4898b00fe7c66860cc3c348617f2d /vk | |
parent | mutual_friends.py: refactoring (diff) | |
download | vk-scripts-a782cca17e2702e4b0b133eefd2bf7c8e792781c.tar.gz vk-scripts-a782cca17e2702e4b0b133eefd2bf7c8e792781c.zip |
forgot about a debug print()
Diffstat (limited to 'vk')
-rw-r--r-- | vk/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -93,7 +93,7 @@ class API: def _call_method(self, method, **params): url = self._build_method_url(method, **params) - print(url) + #print(url) try: with urlopen(url) as response: response = json.loads(response.read().decode()) |