aboutsummaryrefslogtreecommitdiff
path: root/ipsutils/tasks.py
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2013-06-03 14:16:23 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2013-06-03 14:16:23 -0400
commit994fcc67112ec72111e560c03f8ab533e16e374e (patch)
treea71068abdb93b97a09096c3bf3551dc51c7bbd92 /ipsutils/tasks.py
parent2c2e5ee8d91796c361e0cdd178e6adc20bd8684f (diff)
downloadipsutils-994fcc67112ec72111e560c03f8ab533e16e374e.tar.gz
Important bugfix: no new lines in generated scripts
Diffstat (limited to 'ipsutils/tasks.py')
-rw-r--r--ipsutils/tasks.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ipsutils/tasks.py b/ipsutils/tasks.py
index b333996..66a0f86 100644
--- a/ipsutils/tasks.py
+++ b/ipsutils/tasks.py
@@ -262,6 +262,7 @@ class Script(task.Task):
t = string.Template(string.join(line))
line = t.safe_substitute(self.cls.env_pkg)
fp_tempfile.writelines(line)
+ fp_tempfile.writelines('\n')
if self.cls.options.verbose:
print(">>> {0:s}".format(line))
fp_tempfile.flush()