Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Porter <slug@qwebirc.org>2010-04-24 03:43:26 (GMT)
committer Chris Porter <slug@qwebirc.org>2010-04-24 03:43:26 (GMT)
commita7f3629f9b00d81080b38c3e0f384b3099cf55a8 (patch)
treeee0870254c053249a5ae079dc22adf7e1e675226
parentaacde429b3ba5705f4a2f02eaea094e4c8ecc604 (diff)
Add extra newlines to pre-YUI'ed output as YUI requires them.
-rw-r--r--bin/compile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/compile.py b/bin/compile.py
index cd71d93..1b188cb 100644
--- a/bin/compile.py
+++ b/bin/compile.py
@@ -62,7 +62,7 @@ def merge_files(output, files, root_path=lambda x: x):
for x in files:
f2 = open(root_path(x), "rb")
- f.write(f2.read())
+ f.write(f2.read() + "\n")
f2.close()
f.close()