Skip to content

Commit

Permalink
fix bug in taxon arg check
Browse files Browse the repository at this point in the history
  • Loading branch information
kshefchek committed Feb 8, 2016
1 parent a33f629 commit 9f537b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dipper.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def main():
imported_module = importlib.import_module(module)
source_class = getattr(imported_module, src)
mysource = None
if source_class in taxa_supported:
if src in taxa_supported:
mysource = source_class(tax_ids)
else:
mysource = source_class()
Expand Down

0 comments on commit 9f537b7

Please sign in to comment.