Skip to content

Commit c019156

Browse files
committed
python/runtime: Fix network:stopped message
1 parent 04274c6 commit c019156

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/runtime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def send_status(cmd, g):
213213
send_status('started', graph)
214214
elif command == 'stop':
215215
self.runtime.stop(graph)
216-
send_status('started', graph)
216+
send_status('stopped', graph)
217217
else:
218218
print "WARN: Unknown command '%s' for protocol '%s'" % (command, 'network')
219219

0 commit comments

Comments
 (0)