improve help string
authorTom Henderson <tomh@tomh.org>
Tue, 22 Oct 2013 06:38:41 -0700
changeset 10221 6f82f37b5c76
parent 10220 fd5b94ebc43f
child 10222 e4b46dfe92a5
improve help string
src/create-module.py
--- a/src/create-module.py	Mon Oct 21 10:38:06 2013 +0200
+++ b/src/create-module.py	Tue Oct 22 06:38:41 2013 -0700
@@ -331,7 +331,8 @@
         print >> sys.stderr, "Module %r already exists" % (modname,)
         return 2
 
-    print "Creating module %r" % (modname,)
+    print("Creating module %r, "
+          "run './waf configure' to include it in the build" % (modname,))
 
     os.mkdir(moduledir)
     wscript = file(os.path.join(moduledir, "wscript"), "wt")