From 4312a42b5d5f7994aa4fce7a7e931aecceaf4b79 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 28 Mar 2011 12:04:39 +0000 Subject: [PATCH] another minor fix --- plugins/generic/enumeration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/generic/enumeration.py b/plugins/generic/enumeration.py index 02d34126f..fa160719b 100644 --- a/plugins/generic/enumeration.py +++ b/plugins/generic/enumeration.py @@ -1239,7 +1239,7 @@ class Enumeration: retVal = value.replace("`", "") elif Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.ORACLE, DBMS.PGSQL): retVal = value.replace("\"", "") - if Backend.getIdentifiedDbms() == DBMS.MSSQL: + if Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.SYBASE): retVal = retVal.lstrip("%s." % DEFAULT_MSSQL_SCHEMA) return retVal