Skip to content

Commit

Permalink
change warn into info for qualifier with value while none expected
Browse files Browse the repository at this point in the history
  • Loading branch information
Juke34 committed Apr 19, 2019
1 parent 49bc8ac commit 2ba64d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EMBLmyGFF3/modules/qualifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def _by_value_format(self, value):
try:
if self.value_format == "none": # no value taken
if value:
logging.warn("Qualifier '%s' has value '%s', but %s qualifiers does not take a value" % (self.name, value, self.name))
logging.info("Qualifier '%s' has value '%s', but none expected." % (self.name, value))
return ""
elif self.value_format.startswith("\"<database:identifier>\""): # Handle dbxref's
self._load_legal_dbxref( LEGAL_DBXREF_FILE )
Expand Down

0 comments on commit 2ba64d0

Please sign in to comment.