import hmac where it needs to be. Fixes #5948

This commit is contained in:
Yann Leboulanger 2010-09-28 21:05:18 +02:00
parent 0f2ddd50c4
commit 58efb054bd
2 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,6 @@ import base64
import sys import sys
import operator import operator
import hashlib import hashlib
import hmac
from time import (altzone, daylight, gmtime, localtime, mktime, strftime, from time import (altzone, daylight, gmtime, localtime, mktime, strftime,
time as time_time, timezone, tzname) time as time_time, timezone, tzname)

View File

@ -22,6 +22,7 @@ import datetime
import sys import sys
from time import (localtime, time as time_time) from time import (localtime, time as time_time)
from calendar import timegm from calendar import timegm
import hmac
from common import nec from common import nec
from common import helpers from common import helpers