Minor refactoring

This commit is contained in:
Miroslav Stampar
2019-05-30 22:55:54 +02:00
parent f8e9f9c87d
commit 257fa3e9e4
14 changed files with 19 additions and 19 deletions

View File

@@ -23,7 +23,7 @@ class Enumeration(GenericEnumeration):
warnMsg = "on Microsoft Access it is not possible to get name of the current database"
logger.warn(warnMsg)
def isDba(self):
def isDba(self, *args, **kwargs):
warnMsg = "on Microsoft Access it is not possible to test if current user is DBA"
logger.warn(warnMsg)
@@ -39,7 +39,7 @@ class Enumeration(GenericEnumeration):
return {}
def getPrivileges(self, *args):
def getPrivileges(self, *args, **kwargs):
warnMsg = "on Microsoft Access it is not possible to enumerate the user privileges"
logger.warn(warnMsg)