1
0

makePage entfernt Newlines (0x0a) aus Eingabedatei

This commit is contained in:
2018-06-01 15:39:13 +02:00
parent a9e0a14158
commit e1d8226409
2 changed files with 2 additions and 8 deletions

View File

@@ -47,7 +47,7 @@ with open(infilename, 'rb') as infile:
indata = infile.read()
# Daten verarbeiten:
outdata = indata
outdata = indata.replace(b'\x0a',b'')
for el in tagliste.liste:
old = b'<' + el[0] + b'>'