Fix imports using __all__.

This commit is contained in:
Lance Stout 2011-08-04 21:49:15 -07:00
parent caec2976d7
commit 6c8a135612
2 changed files with 2 additions and 4 deletions

View file

@ -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']

View file

@ -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']