aboutsummaryrefslogtreecommitdiff
path: root/scripts/check-for-type-punning-warnings.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/check-for-type-punning-warnings.py')
-rwxr-xr-xscripts/check-for-type-punning-warnings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check-for-type-punning-warnings.py b/scripts/check-for-type-punning-warnings.py
index 3ac48e0c..a108e369 100755
--- a/scripts/check-for-type-punning-warnings.py
+++ b/scripts/check-for-type-punning-warnings.py
@@ -44,7 +44,7 @@ mailoutput.append('http://autobuild.puredata.info/auto-build/' + date + '/logs/'
# upload the log file to the autobuild website
rsyncfile = 'rsync://128.238.56.50/upload/' + date + '/logs/' + outputfilename
cmd = ['rsync', '-axv', outputfile, rsyncfile]
-mailoutput.append(str(cmd))
+mailoutput.append(' '.join(cmd) + '\n')
p = subprocess.Popen(cmd,
shell=False,
stdout=subprocess.PIPE,