nabicht / SimpleTaskQueue

A simple task queue used for coordinating distributed, parallel work.
4 stars 0 forks source link

urlparse/urllib to requests #75

Closed nabicht closed 6 years ago

nabicht commented 6 years ago

Right now I use urlparse.urljoin and in python 3.x this becomes urllib instead of urlparse. This is a big PITA to manage 2.x and 3.x compatibility.

BUT! Requests has a urljoin that handles this for me. Since I'm already using Requests and it is a project dependency (thus not adding it just for this purpose), I'm going to move to this.

nabicht commented 6 years ago

related to / sub task of #60

nabicht commented 6 years ago

done with one nice simple line change. And, tested.