Skip to content

Commit

Permalink
fixed bug in ttree_matrix_stack.py. (sorry about that.)
Browse files Browse the repository at this point in the history
  • Loading branch information
jewettaij committed Feb 22, 2020
1 parent ddbf28d commit 52991e5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion moltemplate/scripts/moltemplate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Copyright (c) 2013

G_PROGRAM_NAME="moltemplate.sh"
G_VERSION="2.16.0"
G_VERSION="2.16.1"
G_DATE="2020-2-21"

echo "${G_PROGRAM_NAME} v${G_VERSION} ${G_DATE}" >&2
Expand Down
2 changes: 1 addition & 1 deletion moltemplate/ttree_matrix_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ def CommandsToMatrix(text, # text containing affine transformation commands
AffineCompose(Mtmp, moveCentBack, Mdest)
CopyMat(Mdest, Mtmp)

if transform_str.find('matrix(') == 0:
elif transform_str.find('matrix(') == 0:
i_paren_close = transform_str.find(')')
if i_paren_close == -1:
i_paren_close = len(transform_str)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@

url='https://github.com/jewettaij/moltemplate',

download_url='https://github.com/jewettaij/moltemplate/archive/v2.16.0.zip',
download_url='https://github.com/jewettaij/moltemplate/archive/v2.16.1.zip',

version='2.16.0',
version='2.16.1',

keywords=['simulation', 'LAMMPS', 'molecule editor', 'molecule builder',
'ESPResSo'],
Expand Down

0 comments on commit 52991e5

Please sign in to comment.