Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
xapple committed Mar 18, 2016
1 parent 8e5edd2 commit 69c2151
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions doc/content/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ To install you the track package, you don't need any administrator privileges or
$ mkdir repos
$ cd repos
$ git clone https://github.com/xapple/track.git
$ cd track
$ python setup.py built_ext --inplace
$ export PYTHONPATH="$HOME/repos/track/":$PYTHONPATH

That last line should go into to your `.bash_profile` file so that python always knows where to find the track package.
2 changes: 1 addition & 1 deletion track/manips/fusion.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def generate(X):
# Name #
if x[2] and y[2]: x[2] = x[2] + ' + ' + y[2]
else: x[2] = x[2] or y[2]
# Score #
# Score #
x[3] = x[3] + y[3]
# Strand #
x[4] = x[4] == y[4] and x[4] or 0
Expand Down

0 comments on commit 69c2151

Please sign in to comment.