diff options
author | Peter Jones <pjones@redhat.com> | 2010-01-13 15:47:12 -0500 |
---|---|---|
committer | Peter Jones <pjones@redhat.com> | 2010-01-15 14:21:03 -0500 |
commit | 7e9ddee96d6f64369e0646f0a43627fafc001417 (patch) | |
tree | 60f09ffceadf1a80626d3fb62b0461be47e7d583 /textw | |
parent | b439ea9a1db509dec92e1335065db5296853d2c8 (diff) | |
download | anaconda-7e9ddee96d6f64369e0646f0a43627fafc001417.tar.gz anaconda-7e9ddee96d6f64369e0646f0a43627fafc001417.tar.xz anaconda-7e9ddee96d6f64369e0646f0a43627fafc001417.zip |
iutil.execWithRedirect() hasn't used searchPath= since 2006. Take it out.
iutil.execWithRedirect() stopped doing anything with searchPath in 2006
when clumens committed d0dec24. Remove these silly vestigal bits.
Diffstat (limited to 'textw')
-rw-r--r-- | textw/timezone_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/timezone_text.py b/textw/timezone_text.py index 6245ed56f..a69328d8e 100644 --- a/textw/timezone_text.py +++ b/textw/timezone_text.py @@ -46,7 +46,7 @@ class TimezoneWindow: if self.c.selected(): args.append("--utc") - iutil.execWithRedirect("hwclock", args, searchPath=1) + iutil.execWithRedirect("hwclock", args) self.g.setTimer(500) self.updateClock() |