summaryrefslogtreecommitdiff
path: root/chat.py
diff options
context:
space:
mode:
authoryvesf <yvesf@d0e8fea9-7529-0410-93fb-d39fd5b9c1dd>2009-06-09 19:25:37 +0000
committeryvesf <yvesf@d0e8fea9-7529-0410-93fb-d39fd5b9c1dd>2009-06-09 19:25:37 +0000
commitf56b05b0175a1543b7281e509982739c6459b631 (patch)
tree6c1352865f001a66104cb6be8397653c500354d8 /chat.py
parentd2303042d30c52650c256e542688681b8374bd50 (diff)
downloadomegle-f56b05b0175a1543b7281e509982739c6459b631.tar.gz
omegle-f56b05b0175a1543b7281e509982739c6459b631.zip
igaga
git-svn-id: http://xapek.org/svn/common/omegle@1095 d0e8fea9-7529-0410-93fb-d39fd5b9c1dd
Diffstat (limited to 'chat.py')
-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)