Refresh of ALL Demos in prep for 2.20 release

This commit is contained in:
MikeTheWatchGuy 2018-09-04 19:43:22 -04:00
parent e251bf1bf4
commit 8b78d6e955
24 changed files with 330 additions and 144 deletions

View file

@ -14,7 +14,9 @@ def execute_command_blocking(command, *args):
print(out.decode("utf-8"))
if err:
print(err.decode("utf-8"))
except: pass
except:
out = ''
return out
# Executes command and immediately returns. Will not see anything the script outputs
def execute_command_nonblocking(command, *args):