diff options
author | Erik Troan <ewt@redhat.com> | 2000-11-17 17:37:11 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-11-17 17:37:11 +0000 |
commit | f942fb8a5541db5a2ae383fa4a5d7e5388cdf34e (patch) | |
tree | ad78eda7b08cb7fb6cbb39f457caa619f8c5d879 /isys/isys.py | |
parent | 514ad7cda7019e35fd9fe94f0cb28d8462715092 (diff) | |
download | anaconda-f942fb8a5541db5a2ae383fa4a5d7e5388cdf34e.tar.gz anaconda-f942fb8a5541db5a2ae383fa4a5d7e5388cdf34e.tar.xz anaconda-f942fb8a5541db5a2ae383fa4a5d7e5388cdf34e.zip |
added code to check to see if a file is an iso image
Diffstat (limited to 'isys/isys.py')
-rw-r--r-- | isys/isys.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/isys/isys.py b/isys/isys.py index d5b0fba7d..1968a5824 100644 --- a/isys/isys.py +++ b/isys/isys.py @@ -356,3 +356,5 @@ def isPsudoTTY (fd): def sync (): return _isys.sync () +def isIsoImage(file): + return _isys.isisoimage(file) |