Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/synthicity/urbansim
Browse files Browse the repository at this point in the history
Conflicts:
	urbansim/urbansim/templates/modelspec.py.template
  • Loading branch information
fscottfoti committed Mar 25, 2014
2 parents 9558497 + c3a3b56 commit 7d2561d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ install:
# install urbansim
- pip install .
script:
- pep8 urbansim scripts urbansimd
- pep8 urbansim scripts
- py.test --cov urbansim --cov-report term-missing
after_success:
- coveralls
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: GNU Affero General Public License v3'
],
packages=find_packages(exclude=['urbansimd', '*.tests']),
packages=find_packages(exclude=['*.tests']),
package_data={'urbansim.urbansim': ['templates/*.template']},
install_requires=[
'Django>=1.6.2',
Expand Down
2 changes: 1 addition & 1 deletion urbansim/urbansim/templates/modelspec.py.template
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ print("Finished with merge in %f" % (time.time() - t_m))
{%- if patsy %}
print("WARNING: using patsy, ind_vars will be ignored")
{% if patsy is string %}
patsy = "{{patsy}}"
patsy = "{{patsy | trim}}"
{% else %}
patsy = string.join({{patsy}}," + ")
{% endif %}
Expand Down

0 comments on commit 7d2561d

Please sign in to comment.