galaxy-genome-annotation / python-apollo

Python library for talking to Apollo API
MIT License
11 stars 11 forks source link

Fix support for python2.7 #11

Closed mboudet closed 5 years ago

mboudet commented 5 years ago

Hi, "from shlex import quote" is only available for python3 upwards, leading to crash with python 2.7.

The legacy lib for 2.7 is "pipes", so I added a try/catch statement.