diff options
-rw-r--r-- | chat.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -78,7 +78,7 @@ class ConversationWindow(object): pass class Omegle(OmegleChat): - def __init__(self,chatwindow,host="www.omegle.com"): + def __init__(self,chatwindow,host="omegle.com"): OmegleChat.__init__(self,host=host) self.chatwindow = chatwindow @@ -96,7 +96,7 @@ class Omegle(OmegleChat): self.chatwindow.add_message("Server send Wait") class Chat(ConversationWindow): - def __init__(self,host="www.omegle.com"): + def __init__(self,host="omegle.com"): print "Chat(host=%s)" % (host) ConversationWindow.__init__(self) self.omegle = Omegle(self,host=host) |