diff --git a/configure.ac b/configure.ac index 011ca22..a7d9309 100644 --- a/configure.ac +++ b/configure.ac @@ -10,7 +10,7 @@ # GNU General Public License for more details. define([VERSION_MAJOR], [1]) define([VERSION_MINOR], [9]) -define([VERSION_FIX], [0]) +define([VERSION_FIX], [1]) define([VERSION_NUMBER], VERSION_MAJOR[.]VERSION_MINOR[.]VERSION_FIX) define([VERSION_SUFFIX], [_master]) diff --git a/setup.py b/setup.py index 3803887..dd878e5 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ def readme(): setup( name="amcrest", - version="1.9.0", + version="1.9.1", description="Python wrapper implementation for Amcrest cameras.", long_description=readme(), author="Douglas Schilling Landgraf, Marcelo Moreira de Mello", diff --git a/src/amcrest/system.py b/src/amcrest/system.py index 245c558..6faf358 100644 --- a/src/amcrest/system.py +++ b/src/amcrest/system.py @@ -155,11 +155,11 @@ async def async_system_information(self) -> str: @property def vendor_information(self) -> str: - return self._magic_box("getVendor") + return pretty(self._magic_box("getVendor")) @property async def async_vendor_information(self) -> str: - return await self._async_magic_box("getVendor") + return await pretty(self._async_magic_box("getVendor")) @property def onvif_information(self) -> str: