From ed581a5b367a064a082985a901938c4bd5bf81f2 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 4 Sep 2017 23:18:43 +0200 Subject: [PATCH] tools: fix whitespace in png2toi .py export --- tools/png2toi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/png2toi b/tools/png2toi index 44854cc90e..aa15975e6f 100755 --- a/tools/png2toi +++ b/tools/png2toi @@ -72,7 +72,7 @@ def process_image(ifn, savefiles=False): f.write(data) print('Written %s ... %d bytes' % (ofn, len(data))) with open(ofn_py, 'wb') as f: - f.write(('%s = %s ' % (bname, data)).encode()) + f.write(('%s = %s\n' % (bname, data)).encode()) print('Written %s ... %d bytes' % (ofn_py, len(data))) with open(ofn_h, 'wt') as f: f.write('static const uint8_t toi_%s[] = {\n' % bname)