Skip to content

Commit b10f3be

Browse files
authored
release v0.1.3 (#22)
* fix typo * prepare release
1 parent 92d7620 commit b10f3be

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

phpypam/core/exceptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def __init__(self, *args, **kwargs):
1414
'Address not found',
1515
}
1616

17-
if (self._code == 200 and self._message in _NOT_FOUND_MESSAGES) or self.code == 404:
17+
if (self._code == 200 and self._message in _NOT_FOUND_MESSAGES) or self._code == 404:
1818
raise PHPyPAMEntityNotFoundException(self._message)
1919
elif self._code == 500:
2020
if self._message == 'Invalid username or password':

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="phpypam",
8-
version="0.1.2",
8+
version="0.1.3",
99
author="Christian Meißner",
1010
author_email="Christian Meißner <cme+codeaffen@meissner.sh>",
1111
description="Python API client library for phpIPAM installation",

0 commit comments

Comments
 (0)