Skip to content

Commit

Permalink
Fix: HHfrag --- compilation error on python 3 (issue #28)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-kalev committed Oct 9, 2013
1 parent 535f2d6 commit fe14843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csb/apps/hhfrag.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ def logger(ri):

except IOError as io:
raise ArgumentIOError(str(io))
except csb.bio.io.wwpdb.StructureNotFoundError, sne:
except csb.bio.io.wwpdb.StructureNotFoundError as sne:
msg = "{0} is not a PDBS25-derived fragset (template {1} not found)"
raise ArgumentIOError(msg.format(fragfile, str(sne)))

Expand Down

0 comments on commit fe14843

Please sign in to comment.