X-Git-Url: http://git.tremily.us/?a=blobdiff_plain;f=hooke%2Fplugin%2Ftutorial.py;h=26ef38ea80b98947802859e3a90ac2615c7703d7;hb=45c5d07228fbe9cefd209012849faa86dd7a020f;hp=08b48f954cadf4a9beca4f37e4e19ad6c4f3f8a2;hpb=a15ac14993d242ee0a52848f3e1b681c8fc22612;p=hooke.git 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__