Skip to content

Commit

Permalink
Remove debug stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
R2Boyo25 committed Dec 19, 2021
1 parent e8502ce commit 5527b8c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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):
Expand Down Expand Up @@ -188,4 +186,4 @@ def returnSourceFile(filename):

if __name__ == '__main__':
start()
app.run(host = '0.0.0.0', port = 4057, debug = True)
app.run(host = '0.0.0.0', port = 4057)

0 comments on commit 5527b8c

Please sign in to comment.