diff options
author | Lance Stout <lancestout@gmail.com> | 2011-08-04 21:49:15 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-08-04 21:49:15 -0700 |
commit | 6c8a135612e1bc9a8da9347cdf1ae6c3858799c3 (patch) | |
tree | bdb69d226588cbdb43e464b318c890c8bacc7c30 /sleekxmpp | |
parent | caec2976d7788dba75a82dfb9079b57c96ef7b47 (diff) | |
download | slixmpp-6c8a135612e1bc9a8da9347cdf1ae6c3858799c3.tar.gz slixmpp-6c8a135612e1bc9a8da9347cdf1ae6c3858799c3.tar.bz2 slixmpp-6c8a135612e1bc9a8da9347cdf1ae6c3858799c3.tar.xz slixmpp-6c8a135612e1bc9a8da9347cdf1ae6c3858799c3.zip |
Fix imports using __all__.
Diffstat (limited to 'sleekxmpp')
-rw-r--r-- | sleekxmpp/features/__init__.py | 4 | ||||
-rw-r--r-- | sleekxmpp/plugins/__init__.py | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sleekxmpp/features/__init__.py b/sleekxmpp/features/__init__.py index 5c86cfea..5bfe173d 100644 --- a/sleekxmpp/features/__init__.py +++ b/sleekxmpp/features/__init__.py @@ -6,6 +6,4 @@ See the file LICENSE for copying permission. """ -__all__ = ['feature_starttls', 'feature_mechanisms', - 'feature_bind', 'feature_session', - 'sasl_plain', 'sasl_anonymous'] +__all__ = ['feature_starttls', 'feature_mechanisms', 'feature_bind'] diff --git a/sleekxmpp/plugins/__init__.py b/sleekxmpp/plugins/__init__.py index 3f90f059..7fa031ef 100644 --- a/sleekxmpp/plugins/__init__.py +++ b/sleekxmpp/plugins/__init__.py @@ -8,4 +8,4 @@ __all__ = ['xep_0004', 'xep_0009', 'xep_0012', 'xep_0030', 'xep_0033', 'xep_0045', 'xep_0050', 'xep_0060', 'xep_0066', 'xep_0082', 'xep_0085', 'xep_0086', 'xep_0092', 'xep_0128', 'xep_0199', - 'xep_0082', 'xep_0203', 'xep_0224', 'xep_0249', 'gmail_notify'] + 'xep_0203', 'xep_0224', 'xep_0249', 'gmail_notify'] |