Skip to content

Commit f401058

Browse files
committed
Merge fix
1 parent 4ab707e commit f401058

3 files changed

Lines changed: 0 additions & 18 deletions

File tree

setup.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,7 @@
1212
from distutils.core import setup
1313
setup(
1414
name='vk_api',
15-
<<<<<<< HEAD
16-
version='4.7.6',
17-
=======
1815
version='5.0.0',
19-
>>>>>>> refs/remotes/origin/dev
2016
author='Kirill Python',
2117
author_email='siberianpython@gmail.com',
2218
url='https://github.com/python273/vk_api',

vk_api/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,7 @@
99
"""
1010

1111
__author__ = 'Kirill Python'
12-
<<<<<<< HEAD
13-
__version__ = '4.7.6'
14-
=======
1512
__version__ = '5.0.0'
16-
>>>>>>> refs/remotes/origin/dev
1713
__email__ = 'siberianpython@gmail.com'
1814
__contact__ = 'https://vk.com/python273'
1915

vk_api/vk_api.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -143,18 +143,8 @@ def security_check(self, url=None, response=None):
143143
if 'security_check' not in response.url:
144144
return
145145

146-
<<<<<<< HEAD
147-
phone_prefix = regexp(r'phone_number">(.*?)<',
148-
response.text)
149-
phone_prefix = phone_prefix[0].strip()
150-
151-
phone_postfix = regexp(r'phone_postfix">(.*?)<',
152-
response.text)
153-
phone_postfix = phone_postfix[0].strip()
154-
=======
155146
phone_prefix = search_re(RE_PHONE_PREFIX, response.text).strip()
156147
phone_postfix = search_re(RE_PHONE_POSTFIX, response.text).strip()
157-
>>>>>>> refs/remotes/origin/dev
158148

159149
if self.number:
160150
code = code_from_number(phone_prefix, phone_postfix, self.number)

0 commit comments

Comments
 (0)