Remove two more "from protocol import *".

This commit is contained in:
Stephan Erb 2008-12-28 01:52:21 +00:00
parent e98a648908
commit f83eb5ae95
2 changed files with 1 additions and 2 deletions

View File

@ -21,7 +21,7 @@ Simple roster implementation. Can be used though for different tasks like
mass-renaming of contacts. mass-renaming of contacts.
''' '''
from protocol import * from protocol import JID, Iq, Presence, Node, NS_ROSTER
from client import PlugIn from client import PlugIn
import logging import logging

View File

@ -27,7 +27,6 @@ connection handling.
from simplexml import ustr from simplexml import ustr
from client import PlugIn from client import PlugIn
from idlequeue import IdleObject from idlequeue import IdleObject
from protocol import *
import proxy_connectors import proxy_connectors
import tls_nb import tls_nb