diff options
author | yvesf <yvesf@d0e8fea9-7529-0410-93fb-d39fd5b9c1dd> | 2009-06-09 19:25:37 +0000 |
---|---|---|
committer | yvesf <yvesf@d0e8fea9-7529-0410-93fb-d39fd5b9c1dd> | 2009-06-09 19:25:37 +0000 |
commit | f56b05b0175a1543b7281e509982739c6459b631 (patch) | |
tree | 6c1352865f001a66104cb6be8397653c500354d8 /chat.py | |
parent | d2303042d30c52650c256e542688681b8374bd50 (diff) | |
download | omegle-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.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) |