[Checkins] SVN: z3c.recipe.usercrontab/trunk/ fixed 0.3/0.4/0.5 typo

Reinout van Rees reinout at vanrees.org
Mon Jun 15 11:03:25 EDT 2009


Log message for revision 101010:
  fixed 0.3/0.4/0.5 typo

Changed:
  U   z3c.recipe.usercrontab/trunk/CHANGES.txt
  U   z3c.recipe.usercrontab/trunk/src/z3c/recipe/usercrontab/README.txt
  U   z3c.recipe.usercrontab/trunk/src/z3c/recipe/usercrontab/usercrontab.py

-=-
Modified: z3c.recipe.usercrontab/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.usercrontab/trunk/CHANGES.txt	2009-06-15 14:59:37 UTC (rev 101009)
+++ z3c.recipe.usercrontab/trunk/CHANGES.txt	2009-06-15 15:03:24 UTC (rev 101010)
@@ -4,7 +4,7 @@
 0.5 (unreleased)
 ----------------
 
-* Added migration code for pre-0.4 entries without a BUILDOUT variable.
+* Added migration code for pre-0.5 entries without a BUILDOUT variable.
   [reinout]
 
 * Added extra blank line in front of "BUILDOUT=..." variable to allow for

Modified: z3c.recipe.usercrontab/trunk/src/z3c/recipe/usercrontab/README.txt
===================================================================
--- z3c.recipe.usercrontab/trunk/src/z3c/recipe/usercrontab/README.txt	2009-06-15 14:59:37 UTC (rev 101009)
+++ z3c.recipe.usercrontab/trunk/src/z3c/recipe/usercrontab/README.txt	2009-06-15 15:03:24 UTC (rev 101010)
@@ -175,7 +175,7 @@
     @reboot echo "mailto example, my/path"
 
 The environment variable is mainly used for grouping items per buildout. Now
-for some upgrade testing.  Pre 0.4 versions of this recipe did not group
+for some upgrade testing.  Pre-0.5 versions of this recipe did not group
 entries per buildout.  We'll add an entry without such a "grouping environment
 variable". First the start situation:
 

Modified: z3c.recipe.usercrontab/trunk/src/z3c/recipe/usercrontab/usercrontab.py
===================================================================
--- z3c.recipe.usercrontab/trunk/src/z3c/recipe/usercrontab/usercrontab.py	2009-06-15 14:59:37 UTC (rev 101009)
+++ z3c.recipe.usercrontab/trunk/src/z3c/recipe/usercrontab/usercrontab.py	2009-06-15 15:03:24 UTC (rev 101010)
@@ -124,7 +124,7 @@
             if (entry == line and
                 'BUILDOUT' in env and
                 'BUILDOUT' not in cur_env):
-                # Possibly line we have to migrate post-0.3.
+                # Possibly line we have to migrate post-0.4.
                 temp_env = cur_env.copy()
                 temp_env['BUILDOUT'] = env['BUILDOUT']
                 if dict_pmatch(env, temp_env):



More information about the Checkins mailing list