Don't strip the leading md5sum char unless its a '\'
parent
615055e6d0
commit
9f1489a794
|
|
@ -80,7 +80,8 @@ def get_md5(mdfile):
|
||||||
#split md5sum on space
|
#split md5sum on space
|
||||||
md5sum = md5sum.split()[0]
|
md5sum = md5sum.split()[0]
|
||||||
#remove leading '\'
|
#remove leading '\'
|
||||||
md5sum = md5sum[1:]
|
if md5sum[0] == "\\":
|
||||||
|
md5sum = md5sum[1:]
|
||||||
print(f"generating md5sum for {mdfile} as {md5sum}")
|
print(f"generating md5sum for {mdfile} as {md5sum}")
|
||||||
return md5sum
|
return md5sum
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue