[gnome-schedule] Update ChangeLog, fix bug 583131



commit ff1e0741f3ec305dc9108796b5bd80410d450d6b
Author: Gaute Hope <eg gaute vetsj com>
Date:   Mon May 18 23:48:48 2009 +0200

    Update ChangeLog, fix bug 583131
---
 ChangeLog      |   14 ++++++++++++++
 src/crontab.py |    2 +-
 2 files changed, 15 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index f41e2b7..3f38949 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+2009-05-18  Gaute Hope  <eg gaute vetsj com>
+
+	* Bug 583131: By Jonathan Price, make sure get_exp_sec doesn't go out of its array.
+
+2009-05-16  Gaute Hope  <eg gaute vetsj com>
+
+	* Released 2.1.0
+
+2009-05-11  Gaute Hope  <eg gaute vetsj com>
+
+	* Remove OnlyGnome from desktop icon
+	* Fix LP bug: 370754
+	* Add XAUTHORITY env. variable to xwrapper script
+
 2009-02-21  Gaute Hope  <eg gaute vetsj com>
 
 	* Bug 572444: TextEdit now wrap words. And at_editor doesn't expand.
diff --git a/src/crontab.py b/src/crontab.py
index 968a9a5..dac84c7 100644
--- a/src/crontab.py
+++ b/src/crontab.py
@@ -700,7 +700,7 @@ class Crontab:
         ## find next whitespace
         i = 0
         found = False
-        while (i <= len(line)) and (found == False):
+        while (i < len(line)) and (found == False):
             if line[i] in string.whitespace:
                 found = True
                 #print "found: " + str (i)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]