[haizea-commit] r845 - branches/1.1/etc
haizea-commit at mailman.cs.uchicago.edu
haizea-commit at mailman.cs.uchicago.edu
Wed Oct 20 14:58:45 CDT 2010
Author: borja
Date: 2010-10-20 14:58:45 -0500 (Wed, 20 Oct 2010)
New Revision: 845
Modified:
branches/1.1/etc/gen_sample_config.py
Log:
TimeDelta configuration values are specified as an integer (seconds) not in HH:MM:SS format.
Modified: branches/1.1/etc/gen_sample_config.py
===================================================================
--- branches/1.1/etc/gen_sample_config.py 2010-10-20 19:46:19 UTC (rev 844)
+++ branches/1.1/etc/gen_sample_config.py 2010-10-20 19:58:45 UTC (rev 845)
@@ -67,7 +67,7 @@
elif opt.type == OPTTYPE_DATETIME:
valid_str = "An ISO timestamp: i.e., YYYY-MM-DD HH:MM:SS"
elif opt.type == OPTTYPE_TIMEDELTA:
- valid_str = "A duration in the format HH:MM:SS"
+ valid_str = "An integer representing a duration in seconds."
f.write("# Valid values: %s\n" % valid_str)
More information about the Haizea-commit
mailing list