| Index: runtime/tools/create_resources.py
|
| diff --git a/runtime/tools/create_resources.py b/runtime/tools/create_resources.py
|
| index 1e36420c1280b3baa36f80f29599868224e7651a..a70e0d07895195136609b729f787b6f8bc07601d 100644
|
| --- a/runtime/tools/create_resources.py
|
| +++ b/runtime/tools/create_resources.py
|
| @@ -39,7 +39,7 @@ def makeResources(root_dir, package_dir, third_party_dir, rebase, input_files):
|
| fileHandle = open(resource_file, 'rb')
|
| lineCounter = 0
|
| for byte in fileHandle.read():
|
| - result += ' %d,' % ord(byte)
|
| + result += r" '\x%02x'," % ord(byte)
|
| lineCounter += 1
|
| if lineCounter == 10:
|
| result += '\n '
|
|
|