From 5527b8ccd1bf4efb853c98221d6e69ede9c7a294 Mon Sep 17 00:00:00 2001 From: R2boyo25 Date: Sun, 19 Dec 2021 16:47:42 -0600 Subject: [PATCH] Remove debug stuff --- main.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/main.py b/main.py index f5ea8dc..31293a7 100644 --- a/main.py +++ b/main.py @@ -35,7 +35,6 @@ def start(self): if "env" in proc: for var in proc['env'].keys(): self.env[var] = proc['env'][var] - print(command) self.process = subprocess.Popen(command, stdin = subprocess.PIPE, stdout = subprocess.PIPE, stderr = subprocess.STDOUT, cwd = workdir, env = self.env, shell = True) @@ -89,7 +88,6 @@ def proc(self, name): configfile = os.path.expanduser("~/.config/programmanager.toml") def loadConfig(): - print(toml.load(configfile)) return toml.load(configfile) def saveConfig(newconfig): @@ -188,4 +186,4 @@ def returnSourceFile(filename): if __name__ == '__main__': start() - app.run(host = '0.0.0.0', port = 4057, debug = True) \ No newline at end of file + app.run(host = '0.0.0.0', port = 4057) \ No newline at end of file