fix line endings in hexdump2grafxpal.py

This commit is contained in:
Thomas Bernard 2018-06-21 15:28:40 +02:00
parent 673d3836d2
commit 3d922261e1

View File

@ -17,10 +17,10 @@ if finp_st.lower()=="--help".lower():
print "with a hex editor like KHexEdit or any other."
else:
finp_fl=open(finp_st,"r");fout_fl=open(fout_st,"w");ctr=0
while True:
while True:
text_st=finp_fl.readline()
if len(text_st)==0:break
text_st=text_st.replace("\n","")
text_st=text_st.replace("\n","")
while len(text_st)>0:
bytecrop=hexvl(text_st[:2])
bc2=int(bytecrop/4)