mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
keytest.py ignores now also whitespaces only lines.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37379 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
e4df1f08fb
commit
7e02f60ae6
@ -285,7 +285,7 @@ while not failed:
|
||||
c = x.getCommand()
|
||||
if c is None:
|
||||
break
|
||||
if c == "":
|
||||
if c.strip() == "":
|
||||
continue
|
||||
outfile.writelines(c + '\n')
|
||||
outfile.flush()
|
||||
|
Loading…
Reference in New Issue
Block a user