Skip to content

Commit 18dc6fa

Browse files
authored
release v0.1.6 (#25)
* handle not found exception for vrf * prepare release 0.1.6
1 parent c59ae6c commit 18dc6fa

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

phpypam/core/exceptions.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ def __init__(self, *args, **kwargs):
1313
'No subnets found',
1414
'Address not found',
1515
'Vlan not found',
16+
'No vrfs configured',
1617
}
1718

1819
if (self._code == 200 and self._message in _NOT_FOUND_MESSAGES) or self._code == 404:

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.5",
8+
version="0.1.6",
99
author="Christian Meißner",
1010
author_email="Christian Meißner <[email protected]>",
1111
description="Python API client library for phpIPAM installation",

0 commit comments

Comments
 (0)