summaryrefslogtreecommitdiff
path: root/src/leap/crypto/srpauth.py
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-03-13 11:39:06 -0300
committerTomás Touceda <chiiph@leap.se>2013-03-13 11:39:06 -0300
commit98699d1c1c9d4698faa6bd7b1c7cf5b576372381 (patch)
tree4be43905383a19deecf0c7472dfcf8a4da573533 /src/leap/crypto/srpauth.py
parentdf01ec4406134d9abbda3c3e1ae1933633827a7f (diff)
Separate stdlibs from non-std in imports
Diffstat (limited to 'src/leap/crypto/srpauth.py')
-rw-r--r--src/leap/crypto/srpauth.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/leap/crypto/srpauth.py b/src/leap/crypto/srpauth.py
index c1964514..e9c72408 100644
--- a/src/leap/crypto/srpauth.py
+++ b/src/leap/crypto/srpauth.py
@@ -15,11 +15,12 @@
# 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 requests
-import srp
import binascii
import logging
+import requests
+import srp
+
from PySide import QtCore, QtGui
from leap.config.providerconfig import ProviderConfig