Skip to content

Commit f3f4366

Browse files
committed
shelldriver: fix bogus self.status variable assigment
Variable which is used by the driver is self._status. Signed-off-by: Petr Štetiar <[email protected]>
1 parent 3a9676e commit f3f4366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labgrid/driver/shelldriver.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def _await_login(self):
175175
else:
176176
# we got a prompt. no need for any further action to
177177
# activate this driver.
178-
self.status = 1
178+
self._status = 1
179179
break
180180

181181
elif index == 1:

0 commit comments

Comments
 (0)