changed imports to fit pep8 styleguide

This commit is contained in:
Jimbo77 2012-08-23 18:21:17 -07:00
parent 2de8df6758
commit 34a3eea0bf
1 changed files with 13 additions and 2 deletions

View File

@ -16,9 +16,20 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys
import base64
import os
import re
import hashlib
import copy
import operator
import ast
import threading
import random
import getpass
import aes
import ecdsa
import sys, base64, os, re, hashlib, copy, operator, ast, threading, random, getpass
import aes, ecdsa
from ecdsa.util import string_to_number, number_to_string
from util import print_error