Menu

#17 Problem with Picasa export?

v1.0_(example)
open
nobody
None
5
2013-09-28
2013-09-25
No

There's problem with export to Picasa Web Album:

[2013-09-25 11:20:27]: Traceback (most recent call last):
[2013-09-25 11:20:27]: File "/usr/local/lib/python2.7/dist-packages/gtkrawgallery.py", line 2590, in publisher
[2013-09-25 11:20:27]: [2013-09-25 11:20:27]: self.publisher = client.Publisher(self, image_list, gtkrg_datadir)
[2013-09-25 11:20:27]: File "/usr/local/share/gtkrawgallery/gtkrg_picasaweb.py", line 59, in init
[2013-09-25 11:20:27]: [2013-09-25 11:20:27]: self.entry3.set_text(self.pwd)
[2013-09-25 11:20:27]: TypeError[2013-09-25 11:20:27]: : [2013-09-25 11:20:27]: Gtk.Entry.set_text() argument 1 must be string, not None[2013-09-25 11:20:27]:

(Ubuntu 13.04)

Strangly, on the another machine (Ubuntu 12.04) I can't reproduce this bug.

Discussion

  • Daniele Isca

    Daniele Isca - 2013-09-28

    Hi Dariusz,

    The problem should disappear after the first log on.
    Change the line on source file gtkrg_picasaweb.py:
    self.entry3.set_text (self.pwd)
    with:
    if self.pwd:
    self.entry3.set_text (self.pwd)

    And reinstall. Thanks for your contribution.

    Regards
    Daniele

     
  • Daniele Isca

    Daniele Isca - 2013-09-28

    Ops
    the second line is indented!

     

Log in to post a comment.