On Nov 28, 1:49 am, mdipierro <mdipie...@cs.depaul.edu> wrote:
> I found a bug. In gluon/sql.py
>
> replace
>
>         elif is_jdbc and self._uri.startswith('sqlite://'):
>             self._dbname='sqlite'
>             if uri[9] != '/':
>                 dbpath = os.path.join(self._folder, uri[14:])
>             else:
>                 dbpath = uri[14:]
>
> with
>
>         elif is_jdbc and self._uri.startswith('sqlite://'):
>             self._dbname='sqlite'
>             if uri[9] != '/':
>                 dbpath = os.path.join(self._folder, uri[9:])
>             else:
>                 dbpath = uri[9:]
>
> Does this fix anything?

Sorry, I have the same error with this new code. And the file
'ge.slite' is still not there.

Reply via email to