debian/apport/source_xorg.py | 6 +++--- debian/changelog | 8 ++++++++ 2 files changed, 11 insertions(+), 3 deletions(-)
New commits: commit aeecc3f91b1483fadd66d45b3e8a666e284ea64f Author: Bryce Harrington <[email protected]> Date: Wed Jan 19 12:43:39 2011 -0800 debian/apport/source_xorg.py: Fix tagging for bugs filed on machines with manually-installed -nvidia drivers. (LP: #704848) diff --git a/debian/apport/source_xorg.py b/debian/apport/source_xorg.py index a9bfb17..6d670dc 100644 --- a/debian/apport/source_xorg.py +++ b/debian/apport/source_xorg.py @@ -167,11 +167,11 @@ def check_is_supported(report, ui=None): # Regression after a system update elif 2 in response: - report['Tags'] += ' regression-update' + report['Tags'] += ' ' + 'regression-update' response = ui.yesno("Thanks for reporting this regression in Ubuntu %s. Do you know exactly which package and version caused the regression?" %(distro_codename)) if response: ui.information("Excellent. Please make sure to list the package name and version in the bug report's description. That is vital information for pinpointing the cause of the regression, which will make solving this bug go much faster.") - report['Tags'] += ' needs-reassignment' + report['Tags'] += ' ' + 'needs-reassignment' return True else: ui.information("Okay, your /var/log/dpkg.log will be attached. Please indicate roughly when you first started noticing the problem. This information will help in narrowing down the suspect package updates.") @@ -225,7 +225,7 @@ Have you uninstalled the drivers from nvidia.com?"""): report['UnreportableReason'] = 'The drivers from nvidia.com are not supported by Ubuntu. Please uninstall them and test whether your problem still occurs.' return attach_file(report, '/var/log/nvidia-installer.log', 'nvidia-installer.log') - tags.append('possible-manual-nvidia-install') + report['Tags'] += ' ' + 'possible-manual-nvidia-install' return True diff --git a/debian/changelog b/debian/changelog index fe60cd5..7105dff 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +xorg (1:7.5+6ubuntu8) natty; urgency=low + + * debian/apport/source_xorg.py: Fix tagging for bugs filed on machines + with manually-installed -nvidia drivers. + (LP: #704848) + + -- Bryce Harrington <[email protected]> Wed, 19 Jan 2011 12:40:38 -0800 + xorg (1:7.5+6ubuntu7) natty; urgency=low * debian/control: Drop xfonts-{75,100}dpi from Depends: to Suggests:. We -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/[email protected]

