diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-06-03 14:16:23 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-06-03 14:16:23 -0400 |
commit | 994fcc67112ec72111e560c03f8ab533e16e374e (patch) | |
tree | a71068abdb93b97a09096c3bf3551dc51c7bbd92 /ipsutils | |
parent | 2c2e5ee8d91796c361e0cdd178e6adc20bd8684f (diff) | |
download | ipsutils-994fcc67112ec72111e560c03f8ab533e16e374e.tar.gz |
Important bugfix: no new lines in generated scripts
Diffstat (limited to 'ipsutils')
-rw-r--r-- | ipsutils/tasks.py | 1 |
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()
|