diff options
author | Peter Jones <pjones@redhat.com> | 2008-09-08 10:50:44 -0400 |
---|---|---|
committer | Peter Jones <pjones@vroomfondel.internal.datastacks.com> | 2008-09-08 11:21:02 -0400 |
commit | ce62c1c27adcf413e80f63faed8ea8f48bf357de (patch) | |
tree | f5c5354a434fc914297c2c61f643442215d2afb6 /isys | |
parent | b9a00e190355e1dce0bc905dc24e3007f8f6b7b1 (diff) | |
download | anaconda-ce62c1c27adcf413e80f63faed8ea8f48bf357de.tar.gz anaconda-ce62c1c27adcf413e80f63faed8ea8f48bf357de.tar.xz anaconda-ce62c1c27adcf413e80f63faed8ea8f48bf357de.zip |
Use print() as a function.
Diffstat (limited to 'isys')
-rwxr-xr-x | isys/isys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/isys.py b/isys/isys.py index 5f2a7f22c..88a6987f0 100755 --- a/isys/isys.py +++ b/isys/isys.py @@ -660,7 +660,7 @@ handleSegv = _isys.handleSegv biosdisks = {} for d in range(80, 80 + 15): disk = doGetBiosDisk("%d" %(d,)) - #print "biosdisk of %s is %s" %(d, disk) + #print("biosdisk of %s is %s" %(d, disk)) if disk is not None: biosdisks[disk] = d |