[Bug 776555] Re: KeyboardInterrupt thrown by urlgrab

2017-10-27 Thread Bug Watch Updater
Launchpad has imported 3 comments from the remote bug at https://bugzilla.redhat.com/show_bug.cgi?id=702457. If you reply to an imported comment from within Launchpad, your comment will be sent to the remote bug automatically. Read more about Launchpad's inter-bugtracker facilities at

[Bug 776555] Re: KeyboardInterrupt thrown by urlgrab

2011-08-09 Thread Daniel T Chen
Upstream has decided to fix the documentation instead; see changeset 674d545ee303aa99701ffb982536851572d8db77. ** Changed in: urlgrabber (Ubuntu) Status: Triaged = Won't Fix -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 776555] Re: KeyboardInterrupt thrown by urlgrab

2011-07-20 Thread Daniel T Chen
** Changed in: urlgrabber (Ubuntu) Status: New = Triaged -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/776555 Title: KeyboardInterrupt thrown by urlgrab To manage notifications about this

[Bug 776555] Re: KeyboardInterrupt thrown by urlgrab

2011-05-05 Thread Andrew
Update: The problem is that the code is not matching the documentation. In the python docs for grabber (pydoc urlgrabber.grabber), the progress_obj is clearly documented as to what arguments are supported: progress_obj = None a class instance that supports the following

[Bug 776555] Re: KeyboardInterrupt thrown by urlgrab

2011-05-05 Thread Andrew
Work-around is to define the start method as: def start(self, filename, url, basename, size, text): length = size ... instead of: def start(self, filename, url, basename, length, text): ... -- You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 776555] Re: KeyboardInterrupt thrown by urlgrab

2011-05-05 Thread Andrew
Another work-around that should work with the correct code and the broken code: def start(self, filename, url, basename, *args, **kwargs): if len(args) = 1: length = args[0] if len(args) = 2: text = args[1] else: text = kwargs.get('text') else:

[Bug 776555] Re: KeyboardInterrupt thrown by urlgrab

2011-05-05 Thread Andrew
Since there is no activity from the maintainer yet, I filed an upstream bug: https://bugzilla.redhat.com/show_bug.cgi?id=702457 ** Bug watch added: Red Hat Bugzilla #702457 https://bugzilla.redhat.com/show_bug.cgi?id=702457 -- You received this bug notification because you are a member of

[Bug 776555] Re: KeyboardInterrupt thrown by urlgrab

2011-05-05 Thread Brian Murray
** Tags added: patch -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/776555 Title: KeyboardInterrupt thrown by urlgrab -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com

[Bug 776555] Re: KeyboardInterrupt thrown by urlgrab

2011-05-05 Thread Andrew
** Also affects: urlgrabber (Fedora) via https://bugzilla.redhat.com/show_bug.cgi?id=702457 Importance: Unknown Status: Unknown -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/776555

[Bug 776555] Re: KeyboardInterrupt thrown by urlgrab

2011-05-03 Thread Andrew
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/776555 Title: KeyboardInterrupt thrown by urlgrab -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com