diff options
author | David Cantrell <dcantrell@redhat.com> | 2008-10-31 15:12:58 -1000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2008-11-03 09:25:05 -1000 |
commit | 340ea253abedbd0d2c38834afd327bb120b66609 (patch) | |
tree | 32e49ea93ee033a7a9a6cd9634111a8f83b23cd6 | |
parent | 2607c13902e818ba3d365305d1e1630bbb88dfbd (diff) | |
download | anaconda-340ea253abedbd0d2c38834afd327bb120b66609.tar.gz anaconda-340ea253abedbd0d2c38834afd327bb120b66609.tar.xz anaconda-340ea253abedbd0d2c38834afd327bb120b66609.zip |
Remove unused bool() function.
I hope I don't need to explain this one.
-rw-r--r-- | timezone.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/timezone.py b/timezone.py index bb599bb57..16df25084 100644 --- a/timezone.py +++ b/timezone.py @@ -25,10 +25,6 @@ from flags import flags import logging log = logging.getLogger("anaconda") -def bool(val): - if val: return "true" - return "false" - class Timezone: def writeKS(self, f): |