diff options
author | Lance Stout <lancestout@gmail.com> | 2012-02-18 11:56:10 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-02-18 11:56:10 -0800 |
commit | 977fcc06324d93422cb19e1550b280cd04e36f82 (patch) | |
tree | f6bbe985ba54ed4c0bc880cfb65eb66cc8412581 /sleekxmpp/thirdparty | |
parent | 94b57d232d0fd1198835a93a013e1f9ff715d5eb (diff) | |
download | slixmpp-977fcc06324d93422cb19e1550b280cd04e36f82.tar.gz slixmpp-977fcc06324d93422cb19e1550b280cd04e36f82.tar.bz2 slixmpp-977fcc06324d93422cb19e1550b280cd04e36f82.tar.xz slixmpp-977fcc06324d93422cb19e1550b280cd04e36f82.zip |
Fix instances of using undefined variables.
Diffstat (limited to 'sleekxmpp/thirdparty')
-rw-r--r-- | sleekxmpp/thirdparty/mini_dateutil.py | 5 | ||||
-rw-r--r-- | sleekxmpp/thirdparty/suelta/mechanisms/digest_md5.py | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/sleekxmpp/thirdparty/mini_dateutil.py b/sleekxmpp/thirdparty/mini_dateutil.py index 6af5ffde..d0d3f2ea 100644 --- a/sleekxmpp/thirdparty/mini_dateutil.py +++ b/sleekxmpp/thirdparty/mini_dateutil.py @@ -67,6 +67,7 @@ import re +import math import datetime @@ -240,12 +241,12 @@ except: if frac != None: # ok, fractions of hour? if min == None: - frac, min = _math.modf(frac * 60.0) + frac, min = math.modf(frac * 60.0) min = int(min) # fractions of second? if s == None: - frac, s = _math.modf(frac * 60.0) + frac, s = math.modf(frac * 60.0) s = int(s) # and extract microseconds... diff --git a/sleekxmpp/thirdparty/suelta/mechanisms/digest_md5.py b/sleekxmpp/thirdparty/suelta/mechanisms/digest_md5.py index 5492c553..890f3e24 100644 --- a/sleekxmpp/thirdparty/suelta/mechanisms/digest_md5.py +++ b/sleekxmpp/thirdparty/suelta/mechanisms/digest_md5.py @@ -1,8 +1,10 @@ import sys import random +import hmac from sleekxmpp.thirdparty.suelta.util import hash, bytes, quote +from sleekxmpp.thirdparty.suelta.util import num_to_bytes, bytes_to_num from sleekxmpp.thirdparty.suelta.sasl import Mechanism, register_mechanism from sleekxmpp.thirdparty.suelta.exceptions import SASLError, SASLCancelled |