# HG changeset patch # User Ben McCormack # Date 1343662623 14400 # Mon Jul 30 11:37:03 2012 -0400 # Node ID ca51a068a2a89fd108ac84c5025b8d58be6b1e87 # Parent b61dc9da6c57790976004dbac0f3d147afd9db1b pystache removed support for pystache.View in future versions. Add note about using earlier version of pystache for the time being so that we can generate the API. diff --git a/trello_api_gen.py b/trello_api_gen.py --- a/trello_api_gen.py +++ b/trello_api_gen.py @@ -1,7 +1,13 @@ import os import re import requests -import pystache +import pystache # requires pystache 0.4.1 or ealier because pystache.View has been deprecated +#to get pystache 0.4.1: +# > git clone https://github.com/defunkt/pystache.git +# > cd ./pystache +# > git checkout v0.4.1 +# > python setup.py install +# TODO: change ApiClass and TrelloApi to not use pystache.View from urlparse import urljoin from BeautifulSoup import BeautifulSoup as Soup