Skip to content

Commit

Permalink
Update index.py
Browse files Browse the repository at this point in the history
  • Loading branch information
midoks committed Jul 3, 2024
1 parent a11e43f commit 5f5384f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/mysql/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -619,10 +619,10 @@ def my8cmd(version, method):
cmd = init_file + ' ' + method
mdb8 = getMdb8Ver()
try:
if version == '5.7':
isInited = initMysql57Data()
elif mw.inArray(mdb8, version):
if mw.inArray(mdb8, version):
isInited = initMysql8Data()
else:
isInited = initMysql57Data()

if not isInited:

Expand Down

0 comments on commit 5f5384f

Please sign in to comment.