Comment 1 for bug 181209

Revision history for this message
Markus Korn (thekorn) wrote :

This is fixed in the text.dev braches in py-lp-bugs rev 101 and in bughelper rev 222.

The default output now looks like:

$ ./bugnumbers -p inkscape --status "Fix Committed" --sort importance
/home/devel/bughelper/text.dev/launchpadbugs/text_bug.py:22: FutureWarning: text_bug API not stable yet
  warnings.warn("text_bug API not stable yet", FutureWarning)
/home/devel/bughelper/text.dev/launchpadbugs/text_buglist.py:7: FutureWarning: text_buglist API not stable yet, LP returns a list of all bugs ever reported
  warnings.warn("text_buglist API not stable yet, LP returns a list of all bugs ever reported", FutureWarning)
[Bug 113980 inkscape: Fix Committed/Medium] - Color picker returns nonsense
[Bug 178139 inkscape: Fix Committed/Medium] - Array out of bounds in Icon preview dialog
[Bug 16724 inkscape: Fix Committed/Wishlist] - Inkscape does not use gnome print dialog
[Bug 174872 inkscape: Fix Committed/Undecided] - Crash (inkscape 0.45.1-1) when exporting drawing (or blank page) to PNG

To also ignore the FeatureWarnings please run:

$ python -W ignore bugnumbers -p inkscape --status "Fix Committed" --sort importance
[Bug 113980 inkscape: Fix Committed/Medium] - Color picker returns nonsense
[Bug 178139 inkscape: Fix Committed/Medium] - Array out of bounds in Icon preview dialog
[Bug 16724 inkscape: Fix Committed/Wishlist] - Inkscape does not use gnome print dialog
[Bug 174872 inkscape: Fix Committed/Undecided] - Crash (inkscape 0.45.1-1) when exporting drawing (or blank page) to PNG

Markus