Re: how to report bugs? (reportbug broken)

2019-05-22 Thread David Wright
On Wed 22 May 2019 at 13:32:09 (-0400), nico.schloe...@gmail.com wrote: > > Try avoid the GUI mode of reportbug. > > How do I do this? `reportbug -h` doesn't say anything about it. Supply 'text' to -u. $ reportbug -h | grep -i interface -u INTERFACE, --interface=INTERFACE, --ui=INTERFACE

Re: how to report bugs? (reportbug broken)

2019-05-22 Thread Jonas Smedegaard
Quoting nico.schloe...@gmail.com (2019-05-22 19:32:09) > Thank you too for the quick reply. > > > Try avoid the GUI mode of reportbug. > > How do I do this? `reportbug -h` doesn't say anything about it. On my Debian system `man reportbug` mentions "gtk" in relation to a "-u" option - if yours

Re: how to report bugs? (reportbug broken)

2019-05-22 Thread Nico Schlömer
Okay, I couldn't figure out how to change the the order of paths in `sys.path`, but I went ahead and removed ``` pip3 uninstall pysimplesoap ``` from `~/.local/`. I have no idea what was the difference between my locally installed version and the system version but reportbug works now. Thanks

Re: how to report bugs? (reportbug broken)

2019-05-22 Thread Michael Lange
On Wed, 22 May 2019 19:04:52 +0200 Nico Schlömer wrote: > Thanks Michael for the quick response! > ``` > python3 -c "import sys; print(sys.path)" > ``` > gives > ``` > ['', '/usr/lib/python37.zip', '/usr/lib/python3.7', > '/usr/lib/python3.7/lib-dynload', >

Re: how to report bugs? (reportbug broken)

2019-05-22 Thread nico . schloemer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hi Jonas, Thank you too for the quick reply. > Try avoid the GUI mode of reportbug. How do I do this? `reportbug -h` doesn't say anything about it. > If you happen to use reportbug-ng Nope. > If literally "nothing happened" Your scepticism

Re: how to report bugs? (reportbug broken)

2019-05-22 Thread Jonas Smedegaard
Hi Nico, Quoting Nico Schlömer (2019-05-22 18:25:16) > Phew, I find it quite difficult to report bugs in Debian. [ meta complaints snipped ] > When launching > ``` > reportbug -B debian > ``` > (running Ubuntu 19.04) and after two, three clicks I'm getting Thanks for mentioning that you use

Re: how to report bugs? (reportbug broken)

2019-05-22 Thread Nico Schlömer
Thanks Michael for the quick response! ``` python3 -c "import sys; print(sys.path)" ``` gives ``` ['', '/usr/lib/python37.zip', '/usr/lib/python3.7', '/usr/lib/python3.7/lib-dynload', '/home/nschloe/.local/lib/python3.7/site-packages', '/usr/local/lib/python3.7/dist-packages',

Re: how to report bugs? (reportbug broken)

2019-05-22 Thread Michael Lange
Hi, On Wed, 22 May 2019 18:25:16 +0200 Nico Schlömer wrote: (...) > Perhaps I've got an incompatible version of a dependency installed in > `~/.local/`? It looks like this. Here reportbug uses modules from the default system Python3: > E: You must put some 'source' URIs in your sources.list

how to report bugs? (reportbug broken)

2019-05-22 Thread Nico Schlömer
Hi everyone, Phew, I find it quite difficult to report bugs in Debian. The recommended way [1] is to use the command line tool reportbug instead of a logging into a bug tracker and clicking "New Issue" like everywhere else. (I'm sure there has been plenty discussion about that before.) Anyhow.