Comment 4 for bug 409130

Revision history for this message
Bart de Koning (bratdaking) wrote : Re: [Bug 409130] Re: launching backintime as root fails to start

Thanks! Changing in line 212:
  self.store_folder_view = gtk.ListStore( str, str, str, int, str,
str, long )
did not work actually, however:
  self.store_folder_view = gtk.ListStore( str, str, str, int, str,
str, float )

So making it a float instead of a normal integer did do the trick!!!

2009/8/14 Stuart Colville <email address hidden>

> It would appear that something your hitting the sys.maxint limit which
> is the max of int
>
> >>> import sys
> >>> sys.maxint
> 2147483647
>
> So you actually need these to be long not int.
>
> if you change:
>
> self.store_folder_view = gtk.ListStore( str, str, str, int, str,
> str, int )
>
> to:
>
> self.store_folder_view = gtk.ListStore( str, str, str, int, str,
> str, long )
>
> That might solve it
>
> --
> launching backintime as root fails to start
> https://bugs.launchpad.net/bugs/409130
> You received this bug notification because you are a direct subscriber
> of the bug.
>