We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f20c36 commit 8f4c88fCopy full SHA for 8f4c88f
setup.py
@@ -11,7 +11,7 @@
11
"""
12
13
14
-version = '11.9.6'
+version = '11.9.7'
15
16
with open('README.md', encoding='utf-8') as f:
17
long_description = f.read()
vk_api/__init__.py
@@ -14,5 +14,5 @@
__author__ = 'python273'
-__version__ = '11.9.6'
+__version__ = '11.9.7'
18
__email__ = 'vk_api@python273.pw'
vk_api/vk_api.py
@@ -43,7 +43,10 @@
43
44
45
def get_unknown_exc_str(s):
46
- return 'Unknown error ({}). Please send bugreport to GitHub or vk_api@python273.pw'.format(s)
+ return (
47
+ f'Unknown error ({s}). Please send a bugreport to GitHub: '
48
+ 'https://github.com/python273/vk_api/issues'
49
+ )
50
51
52
class VkApi(object):
0 commit comments