diff options
author | Andreas Bergmeier <abergmeier@gmx.net> | 2014-01-14 13:18:06 +0100 |
---|---|---|
committer | Andreas Bergmeier <abergmeier@gmx.net> | 2014-01-14 13:18:43 +0100 |
commit | facbcfb04ddaaf5053e928ef792cf7258da5c110 (patch) | |
tree | eb4e9e42f8f71bdc22a9b5cc51d4689e25bd0a58 | |
parent | ef0d8e6173dbeaf7e3f1323c87ea7982624503d9 (diff) |
Replace printing to stderr with logging warning.
-rw-r--r-- | tests/test_other.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_other.py b/tests/test_other.py index c6147f63..6d7995ee 100644 --- a/tests/test_other.py +++ b/tests/test_other.py @@ -336,7 +336,7 @@ f.close() error = None if error: - print >> sys.stderr, error + logging.warning(error) continue try: |