commit | 76f8349399b138735f44b3465f35d63218ea5c21 | [log] [tgz] |
---|---|---|
author | Chris Liechti <cliechti@gmx.net> | Mon Aug 10 01:22:01 2015 +0200 |
committer | Chris Liechti <cliechti@gmx.net> | Mon Aug 10 01:22:01 2015 +0200 |
tree | b70cb8f1066952be616e2f2df2afd97469cda12a | |
parent | b32c97012a57be8635729b5cb4037deccfbb62ab [diff] [blame] |
win32: fixes
diff --git a/serial/tools/miniterm.py b/serial/tools/miniterm.py index 6ed4df0..7864b0e 100644 --- a/serial/tools/miniterm.py +++ b/serial/tools/miniterm.py
@@ -123,8 +123,8 @@ return z def write(self, s): - sys.output.write(s) - sys.output.flush() + self.output.write(s) + self.output.flush() elif os.name == 'posix': import atexit