summaryrefslogtreecommitdiffstats
path: root/instdata.py
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2008-10-29 13:04:15 +0100
committerHans de Goede <hdegoede@redhat.com>2008-10-29 13:04:15 +0100
commit465e38c4d42ab1d9e8cf753b28b14b715268adc0 (patch)
tree2aa6640247b5c1d3a77f0118f27934d53402344d /instdata.py
parent3eef673658452c5f420967e5562440838ad9367d (diff)
downloadanaconda-465e38c4d42ab1d9e8cf753b28b14b715268adc0.tar.gz
anaconda-465e38c4d42ab1d9e8cf753b28b14b715268adc0.tar.xz
anaconda-465e38c4d42ab1d9e8cf753b28b14b715268adc0.zip
Fix various syntax errors caught by PyChecker
Fix various syntax errors caught by PyChecker
Diffstat (limited to 'instdata.py')
-rw-r--r--instdata.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/instdata.py b/instdata.py
index 7e64b06f1..ae629c991 100644
--- a/instdata.py
+++ b/instdata.py
@@ -52,6 +52,9 @@ from pykickstart.version import versionToString, DEVEL
import logging
log = logging.getLogger("anaconda")
+import gettext
+_ = lambda x: gettext.ldgettext("anaconda", x)
+
# Collector class for all data related to an install/upgrade.
class InstallData: