summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rwxr-xr-xanaconda2
-rw-r--r--fsset.py2
-rw-r--r--vnc.py3
4 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index df66ee911..3134275fe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2007-10-30 Chris Lumens <clumens@redhat.com>
+
+ * anaconda (setVNCFromKickstart): Fix indentation.
+
+ * fsset.py (FileSystemType.__init__): fsProfile -> fsprofile.
+
+ * vnc.py (VNCServer.VNCListen): Fix indentation.
+ (VNCServer.startServer): Remove debugging print.
+
2007-10-30 Jeremy Katz <katzj@redhat.com>
* Makefile (lang-names): Make lang-names depend on subdirs so that
diff --git a/anaconda b/anaconda
index 4d35e5fb9..48a4b0207 100755
--- a/anaconda
+++ b/anaconda
@@ -279,7 +279,7 @@ def setVNCFromKickstart(opts):
if handler.vnc.enabled:
flags.usevnc = 1
- if vncS.password == "":
+ if vncS.password == "":
vncS.password = handler.vnc.password
if vncS.vncconnecthost == "":
diff --git a/fsset.py b/fsset.py
index 821c2ec88..61ba6a066 100644
--- a/fsset.py
+++ b/fsset.py
@@ -179,7 +179,7 @@ class FileSystemType:
self.packages = []
self.supportsFsProfiles = False
self.fsProfileSpecifier = None
- self.fsProfile = None
+ self.fsprofile = None
def isKernelFS(self):
"""Returns True if this is an in-kernel pseudo-filesystem."""
diff --git a/vnc.py b/vnc.py
index 463a9e229..87e2fb0f3 100644
--- a/vnc.py
+++ b/vnc.py
@@ -196,13 +196,12 @@ class VncServer:
We dont really have to do anything for the server to listen :)
"""
- if self.connxinfo != None:
+ if self.connxinfo != None:
self.log.info(_("Please manually connect your vnc client to %s to begin the install.") % (self.connxinfo,))
else:
self.log.info(_("Please manually connect your vnc client to begin the install."))
def startServer(self, vncStartedCB=None):
- log.error("Im just testing somenhitng:)
self.log.info(_("Starting VNC..."))
# Lets call it from here for now.