I am trying to use VIProperty in pysphere but I am getting 'str' object has no attribute 'typecode'.
Code:
for h, mor in server.get_hosts().items():
if mor == 'xxx.com':
prop = VIProperty(server, mor)
Error:
Traceback (most recent call last):
File "teardown.py", line 29, in <module>
prop = VIProperty(server, mor)
File "/usr/local/lib/python2.7/dist-packages/pysphere/vi_property.py", line 38, in __init__
self._type = obj.typecode.type[1]
AttributeError: 'str' object has no attribute 'typecode'
works currect because "mor" stil string type and 'str' object has no attribute 'typecode'.
VIProperty:
your call method:
try that: