Kea2-python 0.2.2__py3-none-any.whl → 0.2.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of Kea2-python might be problematic. Click here for more details.

kea2/adbUtils.py CHANGED
@@ -161,7 +161,9 @@ class ADBStreamShell_V1(StreamShell):
161
161
  if msg_type == 'output':
162
162
  self._write_stdout(data, decode=False)
163
163
  elif msg_type == 'exit':
164
- self._exit_code = int(data.strip())
164
+ # TODO : handle exit code properly
165
+ # self._exit_code = int(data.strip())
166
+ self._exit_code = 0
165
167
  break
166
168
 
167
169
  except Exception as e: