summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-03-08 16:09:25 +0000
committerMatt Wilson <msw@redhat.com>2001-03-08 16:09:25 +0000
commit327b7d0a5976124de8d2852e3925b1e58813880b (patch)
tree67851ddf9d5b3b5c9cf4e183d77c2140bdc66bc7 /text.py
parent86bc5f1da0af8c41e2bc1b2600f6cb81c34c63ea (diff)
downloadanaconda-327b7d0a5976124de8d2852e3925b1e58813880b.tar.gz
anaconda-327b7d0a5976124de8d2852e3925b1e58813880b.tar.xz
anaconda-327b7d0a5976124de8d2852e3925b1e58813880b.zip
don't fall over if the file isn't there (error condition in Xconfigurator?
Diffstat (limited to 'text.py')
-rw-r--r--text.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/text.py b/text.py
index dfd12ac02..ff8d78509 100644
--- a/text.py
+++ b/text.py
@@ -616,7 +616,10 @@ class XconfiguratorWindow:
root = todo.instPath)
screen.resume ()
todo.x.skip = 1
- os.unlink(todo.instPath + "/var/run/SERVER");
+ try:
+ os.unlink(todo.instPath + "/var/run/SERVER");
+ except OSError:
+ pass
return INSTALL_NOOP
class BeginInstallWindow: