Browse Source

Finalize 3.28

suites/jessie-proposed-backports
Chris Lawrence 17 years ago
parent
commit
513e626ce8
  1. 8
      debian/changelog
  2. 4
      querybts
  3. 8
      reportbug.py

8
debian/changelog

@ -1,3 +1,11 @@
reportbug (3.28) unstable; urgency=low
* Actually search sys.path for available UIs. (Closes: #383665)
* The urwid interface is mostly functional in this release; feel free
to test it.
-- Chris Lawrence <lawrencc@debian.org> Fri, 18 Aug 2006 17:02:08 -0500
reportbug (3.27) unstable; urgency=medium
* Fix string formatting bug in the SMTP username prompt in

4
querybts

@ -2,7 +2,7 @@
# -*- python -*-
# querybts - Examine the state of a debbugs server
# Written by Chris Lawrence <lawrencc@debian.org>
# (C) 1999-2005 Chris Lawrence
# (C) 1999-2006 Chris Lawrence
#
# This program is freely distributable per the following license:
#
@ -22,7 +22,7 @@
#
# Version ##VERSION##; see changelog for revision history
#
# $Id: querybts,v 1.7 2006-08-13 15:11:31 lawrencc Exp $
# $Id: querybts,v 1.7.2.1 2006-08-18 22:07:58 lawrencc Exp $
import sys, os
sys.path = [os.curdir, '/usr/share/reportbug'] + sys.path

8
reportbug.py

@ -21,7 +21,7 @@
#
# Version ##VERSION##; see changelog for revision history
#
# $Id: reportbug.py,v 1.35 2006-08-15 19:41:36 lawrencc Exp $
# $Id: reportbug.py,v 1.35.2.1 2006-08-18 22:07:58 lawrencc Exp $
VERSION = "reportbug ##VERSION##"
VERSION_NUMBER = "##VERSION##"
@ -47,12 +47,12 @@ AVAILABLE_UIS = []
for ui in VALID_UIS:
pkgname = 'reportbug_ui_%s.py' % ui
for d in sys.path:
if os.path.exists(pkgname):
if os.path.exists(os.path.join(d, pkgname)):
AVAILABLE_UIS.append(ui)
break
UIS = {'text': 'A text-oriented (console) interface',
'urwid': 'A window-based console interface',
UIS = {'text': 'A text-oriented console interface',
'urwid': 'A menu-based console interface',
'gnome2': 'A graphical (Gnome 2) interface'}
MODES = {'novice': 'Offer simple prompts, bypassing technical questions.',

Loading…
Cancel
Save