Skip to content

Commit 2562e0b

Browse files
committed
fix python script color bug
1 parent ca09f91 commit 2562e0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/pyscripts/fm11rf08_full.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -939,9 +939,9 @@ def dumpAcl(data):
939939

940940
def diskDump(data, uid, dpath):
941941
"""Full Dump"""
942-
dump18 = color(f'{dpath}hf-mf-{uid.hex().upper()}-dump18.bin', fg='yellow')
942+
dump18 = f'{dpath}hf-mf-{uid.hex().upper()}-dump18.bin'
943943

944-
lprint(f'\nDump card data to file... {dump18}')
944+
lprint(f'\nDump card data to file... ' + color(dump18, fg='yellow'))
945945

946946
bad = False
947947
try:

0 commit comments

Comments
 (0)