diff options
author | Matthias Hoelzl <tc@xantira.com> | 2017-08-26 20:47:23 +0200 |
---|---|---|
committer | Matthias Hoelzl <tc@xantira.com> | 2017-08-27 23:05:39 +0200 |
commit | a919a013f53bdd9535d248ad9fdbb586c342a4d6 (patch) | |
tree | 5cd9fe7d459db9d9d0f974b479e5292ea2c8877b /editor/SCsub | |
parent | 9e0fbb49c12a4bb12c275194b0599fdfa0b1aabf (diff) |
Fix mixed tab/whitespace in build files
Diffstat (limited to 'editor/SCsub')
-rw-r--r-- | editor/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/SCsub b/editor/SCsub index b9eead3dfc..45d17e408e 100644 --- a/editor/SCsub +++ b/editor/SCsub @@ -351,7 +351,7 @@ if (env["tools"] == "yes"): reg_exporters = 'void register_exporters() {\n' for e in env.platform_exporters: env.editor_sources.append("#platform/" + e + "/export/export.cpp") - reg_exporters += '\tregister_' + e + '_exporter();\n' + reg_exporters += '\tregister_' + e + '_exporter();\n' reg_exporters_inc += '#include "platform/' + e + '/export/export.h"\n' reg_exporters += '}\n' f = open("register_exporters.gen.cpp", "wb") |