diff options
author | Matt Wilson <msw@redhat.com> | 2000-08-18 21:06:03 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-08-18 21:06:03 +0000 |
commit | 7a263d0a76cf61be8685f5da2b5677d99cab4055 (patch) | |
tree | 47241b42884719f3e40aaa9865f20d9f836b4024 /anaconda | |
parent | 5db219150ee867c433b20a358e8a0f2b4f84e9df (diff) | |
download | anaconda-7a263d0a76cf61be8685f5da2b5677d99cab4055.tar.gz anaconda-7a263d0a76cf61be8685f5da2b5677d99cab4055.tar.xz anaconda-7a263d0a76cf61be8685f5da2b5677d99cab4055.zip |
set LC_NUMERIC to C so we don't get funky math
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -21,6 +21,7 @@ else: sys.path.append('/usr/lib/anaconda/installclasses') os.environ['HOME'] = '/tmp' +os.environ["LC_NUMERIC"] = "C" # Python passed my path as argv[0]! # if sys.argv[0][-7:] == "syslogd": |