Fix the ci
This commit is contained in:
parent
6c19e43e5d
commit
1ad817566d
5
main.py
5
main.py
@ -39,7 +39,10 @@ def show_meta(filename:str):
|
|||||||
return
|
return
|
||||||
print("[+] Metadata for %s:" % filename)
|
print("[+] Metadata for %s:" % filename)
|
||||||
for k,v in p.get_meta().items():
|
for k,v in p.get_meta().items():
|
||||||
print(" %s: %s" % (k, v))
|
try: # FIXME this is ugly.
|
||||||
|
print(" %s: %s" % (k, v))
|
||||||
|
except UnicodeEncodeError:
|
||||||
|
print(" %s: harmful content" % k)
|
||||||
|
|
||||||
def clean_meta(filename:str):
|
def clean_meta(filename:str):
|
||||||
if not __check_file(filename, os.R_OK|os.W_OK):
|
if not __check_file(filename, os.R_OK|os.W_OK):
|
||||||
|
Loading…
Reference in New Issue
Block a user