File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010# GNU General Public License for more details.
1111define ( [ VERSION_MAJOR] , [ 1] )
1212define ( [ VERSION_MINOR] , [ 9] )
13- define ( [ VERSION_FIX] , [ 0 ] )
13+ define ( [ VERSION_FIX] , [ 1 ] )
1414define ( [ VERSION_NUMBER] , VERSION_MAJOR [ .] VERSION_MINOR [ .] VERSION_FIX )
1515define ( [ VERSION_SUFFIX] , [ _master] )
1616
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ def readme():
99
1010setup (
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" ,
Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments