google-code-export / crunchyfrog

Automatically exported from code.google.com/p/crunchyfrog
0 stars 0 forks source link

Db URL uses urlparse.parse_qsl #69

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Raises an AttributeError in Python 2.5

Traceback (most recent call last):
  File "./crunchyfrog", line 14, in <module>
    cf.cmdline.run()
  File "/home/andi/cf/cf/cmdline.py", line 109, in run
    instance = app.new_instance(args)
  File "/home/andi/cf/cf/app.py", line 200, in new_instance
    instance = MainWindow(self, create_editor=create_editor)
  File "/home/andi/cf/cf/ui/mainwindow.py", line 83, in __init__
    self._init_elements()
  File "/home/andi/cf/cf/ui/mainwindow.py", line 294, in _init_elements
    self.browser = Browser(self.app, self)
  File "/home/andi/cf/cf/ui/browser.py", line 70, in __init__
    self.reset_tree()
  File "/home/andi/cf/cf/ui/browser.py", line 398, in reset_tree
    for datasource_info in self.app.datasources.get_all():
  File "/home/andi/cf/cf/db/__init__.py", line 514, in get_all
    res.append(self.load(id_, conf))
  File "/home/andi/cf/cf/db/__init__.py", line 486, in load
    ds.url = make_url(conf.get(id_, 'url'))
  File "/home/andi/cf/cf/db/url.py", line 115, in make_url
    kwds = dict(urlparse.parse_qsl(parsed.query))
AttributeError: 'module' object has no attribute 'parse_qsl'

Original issue reported on code.google.com by albrecht.andi on 27 Jul 2009 at 8:14

GoogleCodeExporter commented 9 years ago
This issue was closed by 285ba604b1.

Original comment by albrecht.andi on 28 Jul 2009 at 8:49