fix gitignore filename

This commit is contained in:
Pavol Rusnak 2016-05-28 03:24:58 +02:00
parent fc528f5733
commit b0a5297aed
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ def process_file(name):
with open(name, 'rb') as f: with open(name, 'rb') as f:
resources[name] = f.read() resources[name] = f.read()
# scan generic resources # scan common resources
for res in os.scandir('src/trezor/res/'): for res in os.scandir('src/trezor/res/'):
if res.is_file(): if res.is_file():
process_file('src/trezor/res/%s' % res.name) process_file('src/trezor/res/%s' % res.name)