diff options
| author | Julian Andres Klode <jak@debian.org> | 2009-07-17 19:06:20 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2009-07-17 19:06:20 +0200 |
| commit | 9bd7c1dcf9942d6ce294aa5ac58d90d6c1aa9f51 (patch) | |
| tree | 86beb8d7ddbee1602deb5ffa9f267ab8a06a1c8f /apt/debfile.py | |
| parent | 769c1d5fa940e70ddb8ac55e8dd5ed8f05ab7e6e (diff) | |
| download | python-apt-9bd7c1dcf9942d6ce294aa5ac58d90d6c1aa9f51.tar.gz | |
apt: Use apt_pkg.gettext instead of Python's gettext.
Diffstat (limited to 'apt/debfile.py')
| -rw-r--r-- | apt/debfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt/debfile.py b/apt/debfile.py index 84bbe3ab..e05233f4 100644 --- a/apt/debfile.py +++ b/apt/debfile.py @@ -17,12 +17,12 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA """Classes for working with locally available Debian packages.""" -from gettext import gettext as _ import os import sys import apt_inst import apt_pkg +from apt_pkg import gettext as _ # Constants for comparing the local package file with the version in the cache |
