summaryrefslogtreecommitdiff
path: root/sleekxmpp/xmlstream/tostring/__init__.py
blob: d93fe4ea58f83151e01e8f9e117c5b9b31fea390 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""

"""

import sys


# Import the correct ToString class based on the Python version.
if sys.version_info < (3, 0):
    from sleekxmpp.xmlstream.tostring.tostring26 import ToString
else:
    from sleekxmpp.xmlstream.tostring.tostring import ToString

__all__ = ['ToString']