Skip to content

Commit 49a5c8f

Browse files
authored
Merge pull request #195 from flacjacket/vendor_info_fix
Add vendor_information parsing for 1.9.1
2 parents e498fe9 + 19dcf49 commit 49a5c8f

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# GNU General Public License for more details.
1111
define([VERSION_MAJOR], [1])
1212
define([VERSION_MINOR], [9])
13-
define([VERSION_FIX], [0])
13+
define([VERSION_FIX], [1])
1414
define([VERSION_NUMBER], VERSION_MAJOR[.]VERSION_MINOR[.]VERSION_FIX)
1515
define([VERSION_SUFFIX], [_master])
1616

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def readme():
99

1010
setup(
1111
name="amcrest",
12-
version="1.9.0",
12+
version="1.9.1",
1313
description="Python wrapper implementation for Amcrest cameras.",
1414
long_description=readme(),
1515
author="Douglas Schilling Landgraf, Marcelo Moreira de Mello",

src/amcrest/system.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,11 @@ async def async_system_information(self) -> str:
155155

156156
@property
157157
def vendor_information(self) -> str:
158-
return self._magic_box("getVendor")
158+
return pretty(self._magic_box("getVendor"))
159159

160160
@property
161161
async def async_vendor_information(self) -> str:
162-
return await self._async_magic_box("getVendor")
162+
return await pretty(self._async_magic_box("getVendor"))
163163

164164
@property
165165
def onvif_information(self) -> str:

0 commit comments

Comments
 (0)