Expand tilde in argument of long option --pwfile.

This commit is contained in:
Nikolaus Schulz 2007-11-02 21:06:59 +00:00
parent e25367fcb8
commit 59e9715021
2 changed files with 3 additions and 1 deletions

View File

@ -19,6 +19,8 @@ Version 0.7.1 - UNRELEASED
actually switched them before. Closes: #1762907
* The automatic seteuid feature of archivemail is insecure and thus
deprecated; it will be removed from later versions.
* Expand tilde in argument of long option --pwfile. (Thanks Christian
Brabandt) Closes: Debian bug #434813
Version 0.7.0 - 2 November 2006
* Fixed long options --filter-append and --pwfile to accept their arguments.

View File

@ -242,7 +242,7 @@ class Options:
if o in ('-o', '--output-dir'):
self.output_dir = os.path.expanduser(a)
if o in ('-P', '--pwfile'):
self.pwfile = a
self.pwfile = os.path.expanduser(a)
if o in ('-F', '--filter-append'):
self.filter_append = a
if o in ('-h', '-?', '--help'):