summaryrefslogtreecommitdiffstats
path: root/timezone.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-01-17 22:49:50 +0000
committerJeremy Katz <katzj@redhat.com>2007-01-17 22:49:50 +0000
commitabb6ec58462064d9874945efb8215e1b6cd76d71 (patch)
tree2d2406b1c3ebc65db0beb28895083fe32df5e073 /timezone.py
parent48cb0bc9f3e2d13813f325964793e0944eb6e549 (diff)
downloadanaconda-abb6ec58462064d9874945efb8215e1b6cd76d71.tar.gz
anaconda-abb6ec58462064d9874945efb8215e1b6cd76d71.tar.xz
anaconda-abb6ec58462064d9874945efb8215e1b6cd76d71.zip
2007-01-17 Jeremy Katz <katzj@redhat.com>
* iw/progress_gui.py (InstallProgressWindow.completePackage): Quick and dirty way of handling-non rpm installs. This needs to be reworked more completely * timezone.py (Timezone.__init__): Add a default in case the step is skipped * instdata.py (InstallData.write): Ensure that network is written out rather than counting on our backend to do so in its preinstall * fsset.py (FileSystemType.isKernelFS): Add a method to determine if we're an in-kernel pseudo-filesystem (PsudoFileSystem.isKernelFS): And implement it (FileSystemSet.umountFilesystems): Allow unmounting filesystems without turning off swap.
Diffstat (limited to 'timezone.py')
-rw-r--r--timezone.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/timezone.py b/timezone.py
index f5285db17..e38a6b06e 100644
--- a/timezone.py
+++ b/timezone.py
@@ -59,6 +59,6 @@ class Timezone:
self.arc = asArc
def __init__(self):
- self.tz = None
+ self.tz = "America/New_York"
self.utc = 0
self.arc = 0