Reformat typo

This commit is contained in:
Laurent Indermuehle 2023-01-27 09:35:52 +01:00
parent 931f32cac6
commit 41dfa8ddaf
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -67,7 +67,7 @@ def get_driver_version(mysql_driver):
if driver_name == 'pymysql':
# pymysql has two methods:
# - __version__ that returns the string: 0.7.11.None
# - VERSION that returns the tupple (0, 7, 11, None)
# - VERSION that returns the tuple (0, 7, 11, None)
v = mysql_driver.VERSION[:3]
return '.'.join(map(str, v))
elif driver_name == 'MySQLdb':