Skip to content

Commit 1499bcb

Browse files
author
Mohamed ElKalioby
committed
Adding Ignore-stderr #6
1 parent 9ba9536 commit 1499bcb

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

server/deployer/autodeployer.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,8 @@ def runEvents(config,workdir,event,raiseErrorOnStdErr=True):
3333
wait=script["wait"]
3434

3535
if "ignore-stderr" in script.keys():
36-
print script["ignore-stderr"]
37-
if script["ignore-stderr"] in ("yes","True","true","y","True"):
36+
if script["ignore-stderr"] in ("yes","True","true","y","True",True):
3837
raiseErrorOnStdErr=False
39-
print "raiseErr",raiseErrorOnStdErr
4038
Common.run(cmd,raiseErrorOnStdErr,wait=wait)
4139

4240
def handleFiles(files,workdir):

0 commit comments

Comments
 (0)