diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-28 19:06:08 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-28 19:06:08 +0000 |
commit | b31d5a05dcef06612d2f6632ac5180cca3e6a2bb (patch) | |
tree | fb009e9a99825b89f8c39cf23f4ca2609f2a5802 /silo.py | |
parent | 56d9243f3867ef4f95a0388710b313183b697f24 (diff) | |
download | anaconda-b31d5a05dcef06612d2f6632ac5180cca3e6a2bb.tar.gz anaconda-b31d5a05dcef06612d2f6632ac5180cca3e6a2bb.tar.xz anaconda-b31d5a05dcef06612d2f6632ac5180cca3e6a2bb.zip |
missing 'string'
Diffstat (limited to 'silo.py')
-rw-r--r-- | silo.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -119,7 +119,7 @@ class SiloInstall: args.append("-t") i = len (bootpart) - 1 - while i > 0 and bootpart[i] in digits: + while i > 0 and bootpart[i] in string.digits: i = i - 1 silo.addEntry("partition", bootpart[i+1:]) silo.addEntry("timeout", "50") |