Skip to content

Commit fde7f04

Browse files
unknownunknown
unknown
authored and
unknown
committed
Fixed local path to wsdl when running samples.
1 parent e5a26cc commit fde7f04

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

fedex/.gitignore

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

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)