Not renaming, return a boolean in __virtual__().

This commit is contained in:
Pedro Algarvio 2014-03-06 13:01:06 +00:00
parent ad0d17d59c
commit a05adf19be

View File

@ -153,7 +153,7 @@ def __virtual__():
Only load this module if the mysql libraries exist Only load this module if the mysql libraries exist
''' '''
if HAS_MYSQLDB: if HAS_MYSQLDB:
return 'mysql' return True
return False return False