Skip to content

Commit 554abda

Browse files
committed
Fixed error message
1 parent 6336903 commit 554abda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mariadb_posix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def get_config(options):
6262
cc_version = mariadb_config(config_prg, "cc_version")
6363
if StrictVersion(cc_version[0]) < StrictVersion(required_version):
6464
print('MariaDB Connector/Python requires MariaDB Connector/C '
65-
'>= %s, found version %s' % required_version, cc_version[0])
65+
'>= %s, found version %s' % (required_version, cc_version[0]))
6666
sys.exit(2)
6767
cfg = MariaDBConfiguration()
6868
cfg.version = cc_version[0]

0 commit comments

Comments
 (0)