diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-08-26 19:20:37 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-08-26 19:20:37 +0000 |
commit | 5a40e536390a8103eff7fe532232441123af1214 (patch) | |
tree | 9330e1888af739c042f616efb4e038c2ec78405d /isys/isys.py | |
parent | 3cba382d14d3a50c603d60f9181082cc5c875683 (diff) | |
download | anaconda-5a40e536390a8103eff7fe532232441123af1214.tar.gz anaconda-5a40e536390a8103eff7fe532232441123af1214.tar.xz anaconda-5a40e536390a8103eff7fe532232441123af1214.zip |
oops, syntax error in my raid wiping fun
Diffstat (limited to 'isys/isys.py')
-rw-r--r-- | isys/isys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/isys.py b/isys/isys.py index 8c09ebf48..18e9dd53c 100644 --- a/isys/isys.py +++ b/isys/isys.py @@ -80,7 +80,7 @@ def raidstart(mdDevice, aMember): def wipeRaidSB(device): try: - fd = os.open(device, O_WRONLY) + fd = os.open(device, os.O_WRONLY) except OSError, e: log("error wiping raid device superblock for %s: %s", device, e) return |