Commit 6416103d authored by Stefan Behnel's avatar Stefan Behnel

whitespace

parent 765ec60a
...@@ -1544,8 +1544,7 @@ class CCodeWriter(object): ...@@ -1544,8 +1544,7 @@ class CCodeWriter(object):
if include_dir and len(code) > 1042: if include_dir and len(code) > 1042:
include_file = "%s_%s.h" % ( include_file = "%s_%s.h" % (
name, hashlib.md5(code).hexdigest()) name, hashlib.md5(code).hexdigest())
path = os.path.join( path = os.path.join(include_dir, include_file)
include_dir, include_file)
if not os.path.exists(path): if not os.path.exists(path):
tmp_path = '%s.tmp%s' % (path, os.getpid()) tmp_path = '%s.tmp%s' % (path, os.getpid())
f = Utils.open_new_file(tmp_path) f = Utils.open_new_file(tmp_path)
......
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