aboutsummaryrefslogtreecommitdiffstats
path: root/scudcloud-1.0/lib
diff options
context:
space:
mode:
authorRael <rael.gc@gmail.com>2015-09-11 21:50:00 -0300
committerRael <rael.gc@gmail.com>2015-09-11 21:50:00 -0300
commit19fdec1951512d135ae42510d4fd26054510650a (patch)
treef47701c88f2d08804491f33e2bc052eee50eda13 /scudcloud-1.0/lib
parent5c85fe9b2f09fac107254801dba54b0619cfb106 (diff)
downloadscudcloud-19fdec1951512d135ae42510d4fd26054510650a.zip
scudcloud-19fdec1951512d135ae42510d4fd26054510650a.tar.gz
scudcloud-19fdec1951512d135ae42510d4fd26054510650a.tar.bz2
Simple change in importing order
Diffstat (limited to 'scudcloud-1.0/lib')
-rw-r--r--scudcloud-1.0/lib/leftpane.py2
-rw-r--r--scudcloud-1.0/lib/wrapper.py5
2 files changed, 3 insertions, 4 deletions
diff --git a/scudcloud-1.0/lib/leftpane.py b/scudcloud-1.0/lib/leftpane.py
index 71098b3..a41357e 100644
--- a/scudcloud-1.0/lib/leftpane.py
+++ b/scudcloud-1.0/lib/leftpane.py
@@ -1,8 +1,8 @@
+from resources import Resources
from PyQt4 import QtWebKit, QtGui, QtCore
from PyQt4.Qt import QApplication, QKeySequence
from PyQt4.QtCore import QBuffer, QByteArray, QUrl, SIGNAL
from PyQt4.QtWebKit import QWebView, QWebPage, QWebSettings
-from resources import Resources
class LeftPane(QWebView):
diff --git a/scudcloud-1.0/lib/wrapper.py b/scudcloud-1.0/lib/wrapper.py
index 7e9e2f5..d856796 100644
--- a/scudcloud-1.0/lib/wrapper.py
+++ b/scudcloud-1.0/lib/wrapper.py
@@ -1,13 +1,12 @@
import sys, subprocess, os, json
+from urllib.parse import urlparse
+from resources import Resources
from PyQt4 import QtWebKit, QtGui, QtCore
from PyQt4.Qt import QApplication, QKeySequence
from PyQt4.QtCore import QBuffer, QByteArray, QUrl, SIGNAL
from PyQt4.QtWebKit import QWebView, QWebPage, QWebSettings
from PyQt4.QtNetwork import QNetworkProxy
-from urllib.parse import urlparse
-from resources import Resources
-
class Wrapper(QWebView):
def __init__(self, window):