Skip to content

Commit 1d0e78d

Browse files
committed
removing testing print statements
1 parent 1d4489d commit 1d0e78d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

files/st2_task_base.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,8 @@ def bytes_to_string(self, string):
5252
return string
5353

5454
def parse_output(self, stdout):
55-
print(stdout)
5655
try:
5756
stdout = self.bytes_to_string(stdout)
58-
print(stdout)
5957
# try to parse stdout as JSON and return the parse result
6058
return {'result': json.loads(stdout)}
6159
except ValueError:

0 commit comments

Comments
 (0)