diff options
author | Roberto Hueso Gómez <rhueso@soleta.eu> | 2020-05-14 17:27:42 +0200 |
---|---|---|
committer | Roberto Hueso Gómez <rhueso@soleta.eu> | 2020-05-14 17:27:42 +0200 |
commit | 32b73c50b1f0ecc64f33f2b99f60c3da6329f12a (patch) | |
tree | b934d2b62891e1417cda76fbf4360c44de399f25 /src/linux | |
parent | 269c7b505501ef24a4839b92afeb4fe15f3ced38 (diff) |
Fix typo on linux shellrun operation
Diffstat (limited to 'src/linux')
-rw-r--r-- | src/linux/ogOperations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linux/ogOperations.py b/src/linux/ogOperations.py index e194468..db37326 100644 --- a/src/linux/ogOperations.py +++ b/src/linux/ogOperations.py @@ -68,7 +68,7 @@ class OgLinuxOperations: else: subprocess.call(['/sbin/reboot']) - def shellrun(self, request, ogRest) + def shellrun(self, request, ogRest): cmd = request.getrun() cmds = cmd.split(";|\n\r") |