diff options
author | nyamatongwe <devnull@localhost> | 2011-07-25 14:20:07 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-07-25 14:20:07 +1000 |
commit | 8666e1fda938d08542f695b27df6a3b0b33240fe (patch) | |
tree | 34115149fbc90c6ce7f7ce8d96aea11a79429efc | |
parent | bbab85d57513310b019006b999fd04b88a34ec49 (diff) | |
download | scintilla-mirror-8666e1fda938d08542f695b27df6a3b0b33240fe.tar.gz |
Avoid unwanted output.
-rw-r--r-- | test/XiteWin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/XiteWin.py b/test/XiteWin.py index 695fb0e0a..c5ca2ac57 100644 --- a/test/XiteWin.py +++ b/test/XiteWin.py @@ -305,8 +305,8 @@ class XiteWin(): self.ed.FocusOn() self.ed.GotoPos(self.ed.Length) - print(self.test) if self.test: + print(self.test) for k in self.cmds: if self.cmds[k] == "Test": user32.PostMessageW(self.win, msgs["WM_COMMAND"], k, 0) @@ -613,7 +613,7 @@ class XiteWin(): print("\n".join(sorted(self.ed.used))) def Uncalled(self): - print() + print("") unused = sorted(self.ed.all.difference(self.ed.used)) uu = {} for u in unused: |