bobhlo

Results 2 comments of bobhlo

Temporary solution in Chef, ``` python_pip "django-tagging" do version "0.3.6" end ``` Or manually, ``` pip install django-tagging==0.3.6 ```

@rambler, may need to remove newer version before applying old one ``` python_pip "django-tagging" do action :remove end python_pip "django-tagging" do version "0.3.6" end ```