aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/vk/api.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-06-21 00:55:18 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-06-21 00:55:18 +0300
commita782cca17e2702e4b0b133eefd2bf7c8e792781c (patch)
tree59f9a29675a4898b00fe7c66860cc3c348617f2d /vk/api.py
parentmutual_friends.py: refactoring (diff)
downloadvk-scripts-a782cca17e2702e4b0b133eefd2bf7c8e792781c.tar.gz
vk-scripts-a782cca17e2702e4b0b133eefd2bf7c8e792781c.zip
forgot about a debug print()
Diffstat (limited to 'vk/api.py')
-rw-r--r--vk/api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vk/api.py b/vk/api.py
index f4959e9..933d3a5 100644
--- a/vk/api.py
+++ b/vk/api.py
@@ -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())