From 069c12f849d92375a71103d11efc290453cb15fe Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 28 Jan 2014 18:12:16 -0500 Subject: Fixed line stripping --- condor_wrap.py | 1 + 1 file changed, 1 insertion(+) (limited to 'condor_wrap.py') diff --git a/condor_wrap.py b/condor_wrap.py index 0aa25c4..a1ad584 100755 --- a/condor_wrap.py +++ b/condor_wrap.py @@ -21,6 +21,7 @@ def main(): if isinstance(indata, file): for line in indata.readlines(): + line = line.strip() output.append(line) else: output = indata -- cgit