fixup! Add ComputerPartition._instance_guid getter.

(cherry picked from commit df647cda)
parent cbe6f7b9
...@@ -248,7 +248,6 @@ def _syncComputerInformation(func): ...@@ -248,7 +248,6 @@ def _syncComputerInformation(func):
if getattr(self, '_synced', 0): if getattr(self, '_synced', 0):
return func(self, *args, **kw) return func(self, *args, **kw)
computer = self._connection_helper.getFullComputerInformation(self._computer_id) computer = self._connection_helper.getFullComputerInformation(self._computer_id)
import pdb; pdb.set_trace()
for key, value in computer.__dict__.items(): for key, value in computer.__dict__.items():
if isinstance(value, unicode): if isinstance(value, unicode):
# convert unicode to utf-8 # convert unicode to utf-8
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment