diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-07 20:14:12 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-07 20:14:12 +0000 |
commit | 5334641720f2f08f7be38f610ea577ca58fe0448 (patch) | |
tree | ac944192e19739994139b7882b630081d3c328f1 | |
parent | cef9def7b1530ac59dc4cf344bb7545b42bfee24 (diff) | |
download | anaconda-5334641720f2f08f7be38f610ea577ca58fe0448.tar.gz anaconda-5334641720f2f08f7be38f610ea577ca58fe0448.tar.xz anaconda-5334641720f2f08f7be38f610ea577ca58fe0448.zip |
fixed arg tuple
-rwxr-xr-x | anaconda | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -185,7 +185,7 @@ EndSection server = os.fork() if (not server): os.execv(serverPath, [serverPath, ':1', '-xf86config', - '/tmp/XF86Config'], 'vt5') + '/tmp/XF86Config', 'vt5']) child = os.fork() if (child): os.waitpid(child, 0) |