Skip to content

Commit

Permalink
Minor fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
biomadeira committed Oct 23, 2017
1 parent 259f03b commit a6e4b8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prointvar/merger.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def table_merger(mmcif_table=None, dssp_table=None, sifts_table=None,
available = [mmcif_table, dssp_table, sifts_table, contacts_table]
available = [k for k in available if k is not None]
if len(available) < 2:
return TableMergerError('Nothing to merge...')
raise TableMergerError('Nothing to merge...')

table = None
if mmcif_table is not None:
Expand Down

0 comments on commit a6e4b8d

Please sign in to comment.