Re: [Bug 508886] Re: gpodder crashed with AttributeError in set_attributes()

2010-02-13 Thread Bill Bartley
Thomas Perl wrote:
 Fixed in gPodder 2.2. Please download from the gPodder PPA:
 http://gpodder.org/download

 ** Changed in: gpodder (Ubuntu)
Status: Confirmed = Fix Released

 ** Changed in: gpodder (Ubuntu)
  Assignee: (unassigned) = Thomas Perl (thp)

   
Thomas,

Thank you so much for your efforts. By the way, your download link does
not work. It should be this one:

http://gpodder.org/downloads.html

-- 
gpodder crashed with AttributeError in set_attributes()
https://bugs.launchpad.net/bugs/508886
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 508886] Re: gpodder crashed with AttributeError in set_attributes()

2010-02-13 Thread Thomas Perl
Hello!

On Sat, Feb 13, 2010 at 09:23:19PM -, lexual wrote:
 I'm confused. Will this fix be released to the lucid archives?

This depends entirely on the Ubuntu MOTUs - the source of the updated
packages is available in my PPA, I myself don't have the permissions to
upload the fix to the Lucid archives.

I'll also be happy to provide a patch against the current package
version in Lucid if that's what the MOTUs want, although I'd prefer to
get the newest version into Lucid if possible.

Thomas

-- 
gpodder crashed with AttributeError in set_attributes()
https://bugs.launchpad.net/bugs/508886
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 508886] Re: gpodder crashed with AttributeError in set_attributes()

2010-01-25 Thread Grizzly(Francis Smit)
Thomas Perl wrote:
 python-mygpoclient packages will be provided in the gPodder PPA in the
 next few days.

   
Thanks that will be great

-- 
gpodder crashed with AttributeError in set_attributes()
https://bugs.launchpad.net/bugs/508886
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 508886] Re: gpodder crashed with AttributeError in set_attributes()

2010-01-25 Thread Grizzly(Francis Smit)
Thomas Perl wrote:
 The source  packages have been uploaded to the PPA now, it's just
 waiting to build:

 https://launchpad.net/~thp/+archive/gpodder

 If you are in a real hurry, you can grab the Karmic source package and
 build it locally yourself:

 dget http://khan.thpinfo.com/~thp/deb-
 outgoing/mygpoclient_1.0-1~karmic0.dsc

   
thx but I found another work around in that page replaced the line that
says:
 
widget_name = widget.get_name()

with:


widget_name = gtk.Buildable.get_name(widget)

at line 180 of /usr/lib/pymodules/python2.6/gpodder/gtkui/base.py 
and that fixed it :) 
so I'm sweet

-- 
gpodder crashed with AttributeError in set_attributes()
https://bugs.launchpad.net/bugs/508886
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 508886] Re: gpodder crashed with AttributeError in set_attributes()

2010-01-24 Thread Grizzly(Francis Smit)
Thomas Perl wrote:
 Francis: Yes, this is a known problem and will be fixed in the next
 release. See the comments in this bug report for a workaround (or use
 the Git version).

   
I did that now gpodder want me to install python-mygpoclient this
doesn't seem to be available under lucid s repos is there any way I can
install this locally so as not to touch my system install I downloaded
it from http://thpinfo.com/2010/mygpoclient/

-- 
gpodder crashed with AttributeError in set_attributes()
https://bugs.launchpad.net/bugs/508886
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 508886] Re: gpodder crashed with AttributeError in set_attributes()

2010-01-24 Thread Grizzly(Francis Smit)
Thomas Perl wrote:
 Francis: Yes, this is a known problem and will be fixed in the next
 release. See the comments in this bug report for a workaround (or use
 the Git version).

   

I did that now gpodder want me to install python-mygpoclient this
doesn't seem to be available under lucid s repos is there any way I can
install this locally so as not to touch my system install I downloaded
it from http://thpinfo.com/2010/mygpoclient/

-- 
gpodder crashed with AttributeError in set_attributes()
https://bugs.launchpad.net/bugs/508886
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 508886] Re: gpodder crashed with AttributeError in set_attributes()

2010-01-21 Thread Bill Bartley
Thomas Perl wrote:
 Fixed upstream: http://gpodder.org/commit/c8a527020f8

 Bill: Does the 'gPodderWelcome' AttributeError happen every time or just
 sporadically?

   
It only happened the first time the program ran, when it tried to display a
Welcome dialog. I guess there is some flag that gets set after the first
run so that there is no need for the Welcome dialog.

-- 
gpodder crashed with AttributeError in set_attributes()
https://bugs.launchpad.net/bugs/508886
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 508886] Re: gpodder crashed with AttributeError in set_attributes()

2010-01-20 Thread Bill Bartley
Thomas Perl wrote:
 Please try the following in your Git checkout (don't git pull or you
 will have to install the python-mygpoclient package, as we are in the
 middle of a transition - in case you accidentally do it, use git
 checkout gpodder-before-mygpoclient to get the last revision before
 that dependency is introduced):

 In src/gpodder/gtkui/base.py in the set_attributes method there is a
 line that says:

 widget_name = widget.get_name()

 Please replace that line by:

 widget_name = gtk.Buildable.get_name(widget)

 Then, try to re-run gPodder from the Git checkout (bin/gpodder
 --verbose) and report back if this fixes your problem. Thanks :)

   
Thomas,

After that change the program launches, but now I get this error
message:

AttributeError: 'gPodderWelcome' object has no attribute
'gPodderWelcome'

-- 
gpodder crashed with AttributeError in set_attributes()
https://bugs.launchpad.net/bugs/508886
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs