Skip to content

Commit 1a16381

Browse files
committed
stop_remote_serve: Return True/False depending was server allowed to stop or not.
Fixes #16.
1 parent 084f58e commit 1a16381

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/robotremoteserver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def stop_remote_server(self):
9898
self._shutdown = True
9999
else:
100100
self._log(prefix + 'does not allow stopping.', 'WARN')
101-
return True
101+
return self._shutdown
102102

103103
def get_keyword_names(self):
104104
get_kw_names = getattr(self._library, 'get_keyword_names', None) or \

0 commit comments

Comments
 (0)