From 7b599d17b054055d5166a15f71a3e8246af986b7 Mon Sep 17 00:00:00 2001 From: Marco Capitani Date: Thu, 15 Jun 2017 10:57:08 +0200 Subject: Storyboard: initial implementation commit --- rumba/model.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'rumba') 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 -- cgit v1.2.3