summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-18 20:00:25 +0000
committerMatt Wilson <msw@redhat.com>1999-08-18 20:00:25 +0000
commitd2955f39013b9716a68f452c5628fea0d14e3ee4 (patch)
tree34e8fc6c6e4a77959e3f4c2f1888a8253fc81313 /anaconda
parent01ff1fa2a26fb80a1d2fb07c105b7a90379905d8 (diff)
downloadanaconda-d2955f39013b9716a68f452c5628fea0d14e3ee4.tar.gz
anaconda-d2955f39013b9716a68f452c5628fea0d14e3ee4.tar.xz
anaconda-d2955f39013b9716a68f452c5628fea0d14e3ee4.zip
move import to top
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda2
1 files changed, 1 insertions, 1 deletions
diff --git a/anaconda b/anaconda
index 54595a31a..06805ec24 100755
--- a/anaconda
+++ b/anaconda
@@ -2,6 +2,7 @@
import sys, getopt, os
import gettext
+import traceback
gettext.bindtextdomain("anaconda", "/usr/share/locale")
gettext.textdomain("anaconda")
@@ -229,7 +230,6 @@ try:
intf.run(todo)
except:
(type, value, tb) = sys.exc_info()
- import traceback
from string import joinfields
list = traceback.format_exception (type, value, tb)
text = joinfields (list, "")