summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>1999-11-30 21:27:45 +0000
committerMike Fulbright <msf@redhat.com>1999-11-30 21:27:45 +0000
commitbf988d0c02ea414d919b8f0270456bffac6593ee (patch)
treec65a63062f937445d17fb2d3fe0917a1b66eed07 /iw
parentb3465edfe4b5df72e48f1f529d632ebcb18b61da (diff)
downloadanaconda-bf988d0c02ea414d919b8f0270456bffac6593ee.tar.gz
anaconda-bf988d0c02ea414d919b8f0270456bffac6593ee.tar.xz
anaconda-bf988d0c02ea414d919b8f0270456bffac6593ee.zip
Fixed bug in finding world map data file (map480.png) when running in
reconfiguration mode. Dr Mike <drmike@redhat.com>
Diffstat (limited to 'iw')
-rw-r--r--iw/timezone.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/timezone.py b/iw/timezone.py
index a11a586b7..26fe87b25 100644
--- a/iw/timezone.py
+++ b/iw/timezone.py
@@ -108,12 +108,12 @@ class TimezoneWindow (InstallWindow):
def getScreen (self):
try:
- f = open ("/usr/share/anaconda/map480.png")
+ f = open ("/usr/share/anaconda/pixmaps/map480.png")
f.close ()
except:
path = "gnome-map/map480.png"
else:
- path = "/usr/share/anaconda/map480.png"
+ path = "/usr/share/anaconda/pixmaps/map480.png"
nb = GtkNotebook ()
self.nb = nb