summaryrefslogtreecommitdiffstats
path: root/pyanaconda/timezone.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2012-04-24 11:03:02 -0400
committerChris Lumens <clumens@redhat.com>2012-04-24 11:31:12 -0400
commit0d76185dcbe7ba133f4c3f177a9c12c87a5d9e0b (patch)
tree64629591b97155734ef862844ff084b82ffad64f /pyanaconda/timezone.py
parent78000fce2750569b0b51add6a271dc29a32e441a (diff)
downloadanaconda-0d76185dcbe7ba133f4c3f177a9c12c87a5d9e0b.tar.gz
anaconda-0d76185dcbe7ba133f4c3f177a9c12c87a5d9e0b.tar.xz
anaconda-0d76185dcbe7ba133f4c3f177a9c12c87a5d9e0b.zip
Remove all the writeKS methods except in network and storage.
Those appear to have a lot of information still in them that may not be present either in pykickstart or elsewhere in anaconda. Those still won't be called, but I'm not yet comfortable removing them entirely. Also, use pykickstart to do the writeKS stuff now.
Diffstat (limited to 'pyanaconda/timezone.py')
-rw-r--r--pyanaconda/timezone.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/pyanaconda/timezone.py b/pyanaconda/timezone.py
index 9da44ee25..145a80515 100644
--- a/pyanaconda/timezone.py
+++ b/pyanaconda/timezone.py
@@ -27,12 +27,6 @@ import logging
log = logging.getLogger("anaconda")
class Timezone:
- def writeKS(self, f):
- f.write("timezone")
- if self.utc:
- f.write(" --utc")
- f.write(" %s\n" % self.tz)
-
def write(self):
fromFile = ROOT_PATH + "/usr/share/zoneinfo/" + self.tz