Skip to content

Commit 8f4c88f

Browse files
committed
Update version to 11.9.7
1 parent 1f20c36 commit 8f4c88f

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212

1313

14-
version = '11.9.6'
14+
version = '11.9.7'
1515

1616
with open('README.md', encoding='utf-8') as f:
1717
long_description = f.read()

vk_api/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414

1515

1616
__author__ = 'python273'
17-
__version__ = '11.9.6'
17+
__version__ = '11.9.7'
1818
__email__ = '[email protected]'

vk_api/vk_api.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@
4343

4444

4545
def get_unknown_exc_str(s):
46-
return 'Unknown error ({}). Please send bugreport to GitHub or [email protected]'.format(s)
46+
return (
47+
f'Unknown error ({s}). Please send a bugreport to GitHub: '
48+
'https://github.com/python273/vk_api/issues'
49+
)
4750

4851

4952
class VkApi(object):

0 commit comments

Comments
 (0)