Replaced ',' by '+' in switch graph
This commit is contained in:
parent
249f8dcf5f
commit
fe023d0c7c
1 changed files with 1 additions and 1 deletions
|
@ -553,7 +553,7 @@ class C4Room: # {{{1
|
|||
print("[{}]".format(self.name))
|
||||
print("Please enter 0 or 1 for every light:")
|
||||
for level in range(len(self.switches)):
|
||||
print((level * '|') + ",- " + self.switches[level][0])
|
||||
print((level * '|') + "+ " + self.switches[level][0])
|
||||
|
||||
switch_state = self.get_switch_state()
|
||||
print(switch_state) # Present current state.
|
||||
|
|
Loading…
Reference in a new issue