Skip to content

Commit ef8e7f9

Browse files
committed
Merge pull request #11 from iambrandontaylor/master
Fixed local file path to wsdl files
2 parents e5a26cc + fde7f04 commit ef8e7f9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Diff for: fedex/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.idea
2+
*.pyc
3+
*.pyo

Diff for: fedex/base_service.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def __init__(self, config_obj, wsdl_name, *args, **kwargs):
8181
self.logger.info("Using production server.")
8282
self.wsdl_path = os.path.join(config_obj.wsdl_path, wsdl_name)
8383

84-
self.client = Client('file://%s' % self.wsdl_path)
84+
self.client = Client('file:///%s' % self.wsdl_path)
8585

8686
#print self.client
8787

0 commit comments

Comments
 (0)