Skip to content

Commit f518e0a

Browse files
authored
Merge pull request #45 from iconfinder/fix/python-2-compat
Add arguments to super() call
2 parents abe226a + 319d220 commit f518e0a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyvat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .vat_rules import VAT_RULES
99

1010

11-
__version__ = '1.3.14'
11+
__version__ = '1.3.15'
1212

1313

1414
WHITESPACE_EXPRESSION = re.compile(r'[\s\-]+')

pyvat/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
class ServerError(Exception):
22
def __init__(self, fault_code):
3-
super().__init__("ServerError: {}".format(fault_code))
3+
super(ServerError, self).__init__("ServerError: {}".format(fault_code))
44
self.fault_code = fault_code

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
setup(
2828
name='pyvat',
29-
version='1.3.14',
29+
version='1.3.15',
3030
description='VAT validation for Python',
3131
long_description=long_description,
3232
long_description_content_type="text/x-rst",

0 commit comments

Comments
 (0)