diff --git a/networkapiclient/ClientFactory.py b/networkapiclient/ClientFactory.py index 478512e..14d151b 100644 --- a/networkapiclient/ClientFactory.py +++ b/networkapiclient/ClientFactory.py @@ -133,7 +133,7 @@ def create_api_equipment(self): self.password, self.user_ldap) - def create_v4_api_equipment(self): + def create_api_v4_equipment(self): """Get an instance of Api Equipment services facade.""" return ApiV4Equipment( self.networkapi_url, diff --git a/networkapiclient/__init__.py b/networkapiclient/__init__.py index 830fac5..0e5f855 100644 --- a/networkapiclient/__init__.py +++ b/networkapiclient/__init__.py @@ -16,5 +16,5 @@ MAJOR_VERSION = '0' MINOR_VERSION = '7' -PATCH_VERSION = '6' +PATCH_VERSION = '7' VERSION = '.'.join((MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION,))