Commit 14074210 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Fix a fence-post error in generate.py's code to include a file verbatim.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@5143 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 376ec906
......@@ -522,7 +522,9 @@ def emit_file(fo, fn):
if x > w - 3:
fo.write("\"\n")
x = 0
fo.write("\");\n")
if x != 0:
fo.write("\"")
fo.write(";\n")
#######################################################################
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment