URI: 
       tchanged imports to fit pep8 styleguide - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 34a3eea0bfc3f493184478f924f37d8d14741570
   DIR parent 2de8df6758a8da50b4c2bdfcda5d0e81649936fb
  HTML Author: Jimbo77 <onlineregular@gmail.com>
       Date:   Thu, 23 Aug 2012 18:21:17 -0700
       
       changed imports to fit pep8 styleguide
       
       Diffstat:
         M lib/wallet.py                       |      15 +++++++++++++--
       
       1 file changed, 13 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -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