summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chat.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/chat.py b/chat.py
index 5a78346..87ddd37 100644
--- a/chat.py
+++ b/chat.py
@@ -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)