diff options
author | brosenkr <brosenkr> | 2000-08-11 11:29:37 +0000 |
---|---|---|
committer | brosenkr <brosenkr> | 2000-08-11 11:29:37 +0000 |
commit | edd52ac148d21dc05e340d225084dc4231210561 (patch) | |
tree | 51d73cde14ba080cddb1ffc2d6f36fcb6af51d04 /todo.py | |
parent | 908b567795fb1f918313cb8c2b4cec8acd2d71aa (diff) | |
download | anaconda-edd52ac148d21dc05e340d225084dc4231210561.tar.gz anaconda-edd52ac148d21dc05e340d225084dc4231210561.tar.xz anaconda-edd52ac148d21dc05e340d225084dc4231210561.zip |
Fix syntax error in cciss code
Diffstat (limited to 'todo.py')
-rw-r--r-- | todo.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -854,7 +854,7 @@ class ToDo: (type, sector, size) = table[i] if size and type == _balkan.EXT2: # for RAID arrays of format c0d0p1 - if drive [:3] == "rd/" or drive [:4] == "ida/" or drive [:6] == "cciss/" : + if drive [:3] == "rd/" or drive [:4] == "ida/" or drive [:6] == "cciss/": dev = drive + 'p' + str (i + 1) else: dev = drive + str (i + 1) |