]> scripts.mit.edu Git - wizard.git/blobdiff - README
Make deploy log parsing a little more robust.
[wizard.git] / README
diff --git a/README b/README
index 4f95d6941dd80afcca5ea36ce26b0a22154e5376..7eb7289a56be529533365422f448d42cfc808edf 100644 (file)
--- a/README
+++ b/README
@@ -1,3 +1,5 @@
+This is Python 2.6 only!
+
 To add a new command to wizard, you need to touch the following
 locations:
 
@@ -6,4 +8,13 @@ locations:
 - lib/wizard/command/__init__.py
     Add the line "import commandname"
 - lib/wizard/command/commandname.py
-    Implement your command there as main()
+    Implement your command there as commandname()
+
+Design decision:
+- A mass tool will plow ahead even if the subcommand throws
+  Wizard errors.  Normal errors will cause us to halt
+  completely.  If the error that occured is within the realm
+  of possibly, and should be dealt with by manual intervention
+  (or even possibly a code change), and would not cause harm
+  if we continued going, we will keep going, and let the maintainer
+  deal later on with the errors en masse.