Skip to content

Commit 65d0269

Browse files
ynezzEmantor
authored andcommitted
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 a652443 commit 65d0269

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
@@ -172,7 +172,7 @@ def _await_login(self):
172172
else:
173173
# we got a prompt. no need for any further action to
174174
# activate this driver.
175-
self.status = 1
175+
self._status = 1
176176
break
177177

178178
elif index == 1:

0 commit comments

Comments
 (0)