summaryrefslogtreecommitdiffstats
path: root/vnc.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-11-28 11:11:48 -0500
committerChris Lumens <clumens@redhat.com>2007-11-28 11:11:48 -0500
commit41d614819ed8c5458a2165b17ce03e5601f6732d (patch)
tree84d7934e7fbe277ee26d22f1ddaddda36f872be0 /vnc.py
parente55a73def65ee32fc7533048bde9dbbbb972fecf (diff)
downloadanaconda-41d614819ed8c5458a2165b17ce03e5601f6732d.tar.gz
anaconda-41d614819ed8c5458a2165b17ce03e5601f6732d.tar.xz
anaconda-41d614819ed8c5458a2165b17ce03e5601f6732d.zip
Fix traceback when starting up vnc mode due to undefined attribute.
Diffstat (limited to 'vnc.py')
-rw-r--r--vnc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vnc.py b/vnc.py
index 22e5d9157..c25533cb8 100644
--- a/vnc.py
+++ b/vnc.py
@@ -45,7 +45,7 @@ class VncServer:
self.log_file = log_file
self.pw_file = pw_file
self.pw_init_file = pw_init_file
- #self.connxinfo = self.name+":"+self.display
+ self.connxinfo = None
self.log = logging.getLogger("anaconda.stdout")
def recoverVNCPassword(self):