diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/netobj.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/netobj.py b/scripts/netobj.py index 03228e34..1a2de727 100644 --- a/scripts/netobj.py +++ b/scripts/netobj.py @@ -195,7 +195,7 @@ def emit_header_file(f, p): def emit_source_file(f, p, protofilename): - print >>f, "#line 1 \"%s\"" % os.path.abspath(protofilename) + print >>f, "#line 1 \"%s\"" % os.path.abspath(protofilename).replace("\\", "\\\\") for l in p.source_raw: print >>f, l |