scripts/dumpbz |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 503d792d0a946ed990c2ea055cbbefa380887c68
Author: Bjoern Michaelsen <bjoern.michael...@canonical.com>
Date:   Fri Mar 28 14:03:26 2014 +0100

    fix 'option values must be strings'

diff --git a/scripts/dumpbz b/scripts/dumpbz
index e0a4639..47bf16b 100755
--- a/scripts/dumpbz
+++ b/scripts/dumpbz
@@ -48,7 +48,7 @@ class DumpBzState(configparser.ConfigParser):
     def set_defaults(self):
         self['DumpBz'] = {
             'LastBugSynced' : 0,
-            'UnresolvedSyned' : False }
+            'UnresolvedSyned' : 'false' }
 
 class WorkingBranchCopy:
     def __init__(self, gitrepo, branch):
@@ -224,7 +224,7 @@ class SyncWorker:
                 state['DumpBz']['LastBugSynced'] = bug_id
             if len(bug_ids) < int(batchsize):
                 self.log.write('Last batch, starting next cycle.\n')
-                state['DumpBz']['UnresolvedSyned'] = True
+                state['DumpBz']['UnresolvedSyned'] = 'true'
                 state['DumpBz']['LastBugSynced'] = 0
         except Exception as e:
             self.log.write("updating old batch FAILED: %s\n" % str(e))
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to