mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-15 06:09:13 +08:00
fix python script color bug
This commit is contained in:
parent
ca09f91643
commit
2562e0b8c9
1 changed files with 2 additions and 2 deletions
|
@ -939,9 +939,9 @@ def dumpAcl(data):
|
|||
|
||||
def diskDump(data, uid, dpath):
|
||||
"""Full Dump"""
|
||||
dump18 = color(f'{dpath}hf-mf-{uid.hex().upper()}-dump18.bin', fg='yellow')
|
||||
dump18 = f'{dpath}hf-mf-{uid.hex().upper()}-dump18.bin'
|
||||
|
||||
lprint(f'\nDump card data to file... {dump18}')
|
||||
lprint(f'\nDump card data to file... ' + color(dump18, fg='yellow'))
|
||||
|
||||
bad = False
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue