diff options
author | Ryan Kelly <ryan@rfk.id.au> | 2013-07-17 08:09:16 +1000 |
---|---|---|
committer | Ryan Kelly <ryan@rfk.id.au> | 2013-07-17 08:10:13 +1000 |
commit | 3a2e897b45caaf2ac16634b4e1ce57ca048a6bc1 (patch) | |
tree | 263442d4394f76e968145923318f2a85a4a5f28a /tools/file_packager.py | |
parent | 77f2dc17b4ab45fa5419dd9fd92d43e4f00307df (diff) |
Fix indentation
Diffstat (limited to 'tools/file_packager.py')
-rw-r--r-- | tools/file_packager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/file_packager.py b/tools/file_packager.py index fb7e8a55..575e5957 100644 --- a/tools/file_packager.py +++ b/tools/file_packager.py @@ -331,7 +331,7 @@ for file_ in data_files: # Embed data = map(ord, open(file_['srcpath'], 'rb').read()) if not data: - str_data = '[]' + str_data = '[]' else: str_data = '' chunk_size = 10240 |