diff options
author | Marco Capitani <m.capitani@nextworks.it> | 2017-06-15 10:57:08 +0200 |
---|---|---|
committer | Marco Capitani <m.capitani@nextworks.it> | 2017-06-15 10:57:08 +0200 |
commit | 7b599d17b054055d5166a15f71a3e8246af986b7 (patch) | |
tree | 07e9599c872d7a20f912216e030226de589b6f0e | |
parent | 3ada31d1f6c112e1338225eacc982f6dc885292e (diff) | |
download | rumba-7b599d17b054055d5166a15f71a3e8246af986b7.tar.gz rumba-7b599d17b054055d5166a15f71a3e8246af986b7.zip |
Storyboard: initial implementation commit
-rw-r--r-- | rumba/model.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/rumba/model.py b/rumba/model.py index 9818ac7..72b7baf 100644 --- a/rumba/model.py +++ b/rumba/model.py @@ -20,9 +20,7 @@ # MA 02110-1301 USA import abc -import random - -import time +import subprocess import rumba.log as log @@ -595,7 +593,7 @@ class ClientProcess(Client): self.running = True def run(self): - pass # TODO to be implemented + subprocess.Popen([self.ap] + self.options.split()) def stop(self): pass # TODO to be implemented |