Changeset 161
- Timestamp:
- 05/10/08 16:20:34 (6 months ago)
- Files:
-
- randomchat/src/randomchat.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
randomchat/src/randomchat.py
r157 r161 17 17 # along with this program. If not, see <http://www.gnu.org/licenses/>. 18 18 19 from gettext import (bindtextdomain, textdomain, bind_textdomain_codeset, \19 from gettext import (bindtextdomain, textdomain, bind_textdomain_codeset, 20 20 gettext as _) 21 21 bindtextdomain('randomchat', '../locale') … … 23 23 bind_textdomain_codeset('randomchat', 'UTF-8') 24 24 25 from xmpp import (NS_DISCO_ITEMS, NS_DISCO_INFO, NS_REGISTER, NS_MUC, JID, \25 from xmpp import (NS_DISCO_ITEMS, NS_DISCO_INFO, NS_REGISTER, NS_MUC, JID, 26 26 Error, Message, Presence, Node, Component, browser) 27 27 from random import choice as random_choice
