diff options
author | bfox <bfox> | 2000-11-22 03:58:31 +0000 |
---|---|---|
committer | bfox <bfox> | 2000-11-22 03:58:31 +0000 |
commit | 0af5f00bb8db755cc2cc5c1ae3c15b41ed3a0f4c (patch) | |
tree | 7d6902eab63082fc8af058db8b3174fd0ce59dfb /todo.py | |
parent | 6f75dbb2a9f9b9010a69816cc374ff4b793994d4 (diff) | |
download | anaconda-0af5f00bb8db755cc2cc5c1ae3c15b41ed3a0f4c.tar.gz anaconda-0af5f00bb8db755cc2cc5c1ae3c15b41ed3a0f4c.tar.xz anaconda-0af5f00bb8db755cc2cc5c1ae3c15b41ed3a0f4c.zip |
Added option to run installer in 640x480 mode. --lowres
Diffstat (limited to 'todo.py')
-rw-r--r-- | todo.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -325,7 +325,7 @@ class ToDo: def __init__(self, intf, method, rootPath, setupFilesystems = 1, installSystem = 1, mouse = None, instClass = None, x = None, expert = 0, serial = 0, reconfigOnly = 0, test = 0, - extraModules = []): + extraModules = [], lowres = None): self.intf = intf self.method = method self.hdList = None @@ -339,6 +339,7 @@ class ToDo: self.network = Network () self.rootpassword = Password () self.extraModules = extraModules + self.lowres = lowres if mouse: self.mouse = mouse |