skimhub / salesforce-python-toolkit

Automatically exported from code.google.com/p/salesforce-python-toolkit
GNU Lesser General Public License v3.0
0 stars 0 forks source link

Remove kludgy URL detection/munging code #7

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
The block of code in base.py that detects the presence of '://', canonicalizes 
the path, and preprends 'file://', should just all be removed. It serves no 
purpose. Just document that the path must be in URL form; that's the way suds 
works, for better or for worse. There's no point trying to hack around it. Also 
it pretty much breaks this module on windows.

Original issue reported on code.google.com by jeff.lau...@gmail.com on 30 Dec 2010 at 5:26

GoogleCodeExporter commented 8 years ago
This module does break on windows as-is, but I fixed it simply by adding 
another / to the prepended file:// (I only figured this out when I noticed my 
browser turned file:// into file:///).

Original comment by lelk...@gmail.com on 10 Feb 2012 at 8:35