Package: reportbug Version: 4.5 Severity: normal Tags: patch Hi,
Here is a patch to expand visually ~ and variables in attach file dialog. Bye, Carl Chenet -- Package-specific info: ** Environment settings: DEBEMAIL="[email protected]" DEBFULLNAME="Carl Chenet" INTERFACE="text" ** /home/chaica/.reportbugrc: reportbug_version "4.5" mode novice ui text smtphost "smtp.free.fr" -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages reportbug depends on: ii apt 0.7.21 Advanced front-end for dpkg ii python 2.5.4-2 An interactive high-level object-o ii python-reportbug 4.5 Python modules for interacting wit reportbug recommends no packages. Versions of packages reportbug suggests: pn debconf-utils <none> (no description available) ii debsums 2.0.44 verification of installed package pn dlocate <none> (no description available) ii exim4 4.69-9 metapackage to ease Exim MTA (v4) ii exim4-daemon-light [mail-tran 4.69-9 lightweight Exim MTA (v4) daemon ii file 5.00-1 Determines file type using "magic" ii gnupg 1.4.9-4 GNU privacy guard - a free PGP rep pn python-gnome2-extras <none> (no description available) pn python-gtk2 <none> (no description available) pn python-urwid <none> (no description available) pn python-vte <none> (no description available) -- no debconf information
>From 0bcbf000e38d0942f42639901430c13d2d7bd6a3 Mon Sep 17 00:00:00 2001 From: chaica <[email protected]> Date: Thu, 30 Jul 2009 00:36:14 +0200 Subject: [PATCH] allow the use of tilde and variables in attach file dialog --- reportbug/ui/text_ui.py | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/reportbug/ui/text_ui.py b/reportbug/ui/text_ui.py index 450d7c3..cb9a4e6 100644 --- a/reportbug/ui/text_ui.py +++ b/reportbug/ui/text_ui.py @@ -262,6 +262,8 @@ def get_password(prompt=None): return getpass.getpass(prompt) def FilenameCompleter(text, i): + text = os.path.expanduser(text) + text = os.path.expandvars(text) paths = glob.glob(text+'*') if not paths: return None -- 1.6.2.3

