mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07: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):
|
def diskDump(data, uid, dpath):
|
||||||
"""Full Dump"""
|
"""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
|
bad = False
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue