Dumpstate with trailing spaces isn't recognized

Issue #79 resolved
Mikhail Lopatkin repo owner created an issue

Some devices generate dumpstates with trailing spaces on each line. Such files cannot be opened with the application.

Use S&R in your favorite editor or use following script as workaround - 'strip.py < bad.txt > good.txt'

#!/bin/env python

import sys
for s in sys.stdin:
    print s.rstrip()

Comments (4)

  1. Log in to comment