Skip to content

Commit fce61ff

Browse files
committed
Minor if condition adjustment
1 parent 8f5fb56 commit fce61ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/dbms/postgresql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def checkDbms(self):
204204

205205

206206
def forceDbmsEnum(self):
207-
if kb.dbms == "PostgreSQL" and conf.db not in PGSQL_SYSTEM_DBS and conf.db != "public":
207+
if conf.db not in PGSQL_SYSTEM_DBS and conf.db != "public":
208208
conf.db = "public"
209209

210210
warnMsg = "on PostgreSQL it is only possible to enumerate "

0 commit comments

Comments
 (0)