From e1bc7dcb6c80a4c247db4661d71be188628719d4 Mon Sep 17 00:00:00 2001 From: Nicolas Boisselier Date: Tue, 11 Aug 2015 22:34:35 +0100 Subject: [PATCH] Python Lib --- lib/python/nb.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/python/nb.py b/lib/python/nb.py index aeab3018..2c75f804 100644 --- a/lib/python/nb.py +++ b/lib/python/nb.py @@ -1,3 +1,4 @@ +import sys class NB: debug = false @@ -8,4 +9,4 @@ class NB: def debug(msg): if NB.debug: - print msg + print sys.stderr, msg -- 2.47.3