We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb96ca2 commit da389dbCopy full SHA for da389db
shotgun_api3/shotgun.py
@@ -45,9 +45,9 @@
45
import urllib
46
import urllib2 # used for image upload
47
import urlparse
48
-from lib.httplib2 import Http, ProxyInfo, socks
49
-from lib.sgtimezone import SgTimezone
50
-from lib.xmlrpclib import Error, ProtocolError, ResponseError
+from shotgun_api3.lib.httplib2 import Http, ProxyInfo, socks
+from shotgun_api3.lib.sgtimezone import SgTimezone
+from shotgun_api3.lib.xmlrpclib import Error, ProtocolError, ResponseError
51
52
LOG = logging.getLogger("shotgun_api3")
53
@@ -64,7 +64,7 @@
64
dir_path = os.path.dirname(__file__)
65
lib_path = os.path.join(dir_path, 'lib')
66
sys.path.append(lib_path)
67
- import lib.simplejson as json
+ import shotgun_api3.lib.simplejson as json
68
sys.path.pop()
69
70
try:
0 commit comments