diff options
author | Lance Stout <lancestout@gmail.com> | 2014-06-09 08:28:57 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2014-06-09 08:29:48 -0700 |
commit | 768136e493916826187db9a7dbc4a3502b26c1bc (patch) | |
tree | ad7fa6606aa2178dd756673b8967fd52ce940d5b /sleekxmpp/util/__init__.py | |
parent | 753cb3580e98d8230b7dc4f12cbf2fd0b47acf8a (diff) | |
download | slixmpp-768136e493916826187db9a7dbc4a3502b26c1bc.tar.gz slixmpp-768136e493916826187db9a7dbc4a3502b26c1bc.tar.bz2 slixmpp-768136e493916826187db9a7dbc4a3502b26c1bc.tar.xz slixmpp-768136e493916826187db9a7dbc4a3502b26c1bc.zip |
Fix things again, this time for python3
Diffstat (limited to 'sleekxmpp/util/__init__.py')
-rw-r--r-- | sleekxmpp/util/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sleekxmpp/util/__init__.py b/sleekxmpp/util/__init__.py index 957a9335..05286d33 100644 --- a/sleekxmpp/util/__init__.py +++ b/sleekxmpp/util/__init__.py @@ -11,7 +11,8 @@ from sleekxmpp.util.misc_ops import bytes, unicode, hashes, hash, \ - num_to_bytes, bytes_to_num, quote, XOR + num_to_bytes, bytes_to_num, quote, \ + XOR, safedict # ===================================================================== |