X-Git-Url: http://git.tremily.us/?p=hooke.git;a=blobdiff_plain;f=hooke%2Fplugin%2Ftutorial.py;h=26ef38ea80b98947802859e3a90ac2615c7703d7;hp=08b48f954cadf4a9beca4f37e4e19ad6c4f3f8a2;hb=111afe6d4ab348fecb0ca5bce61a49274964e07f;hpb=6c5cbf09021e1571f7128ad7b782e5b13d79a8e1 diff --git a/hooke/plugin/tutorial.py b/hooke/plugin/tutorial.py index 08b48f9..26ef38e 100644 --- a/hooke/plugin/tutorial.py +++ b/hooke/plugin/tutorial.py @@ -23,6 +23,7 @@ Hooke plugin, including description of main Hooke internals. import logging import StringIO +import sys from numpy import arange @@ -65,7 +66,7 @@ class TutorialPlugin (Plugin): # the plugin is loaded, this function is executed. If there # is something you need to do when Hooke starts, code it in # this function. - print 'I am the Tutorial plugin initialization!' + print >> sys.stderr, 'I am the Tutorial plugin initialization!' # This super() call similar to the old-style # Plugin.__init__