adding --schema to the wizard/Basic as it looks like a cool thingy to put there

This commit is contained in:
Miroslav Stampar
2011-05-26 14:30:05 +00:00
parent 46ceb14f37
commit b6fe5b12a4
2 changed files with 3 additions and 3 deletions

View File

@@ -1238,9 +1238,9 @@ class Enumeration:
self.getTables()
infoMsg = "fetched tables: "
infoMsg += ", ".join(["%s" % ", ".join("%s%s%s" % (db, ".." if \
infoMsg += ", ".join(["%s" % ", ".join("%s%s%s" % (unsafeSQLIdentificatorNaming(db), ".." if \
Backend.isDbms(DBMS.MSSQL) or Backend.isDbms(DBMS.SYBASE) \
else ".", t) for t in tbl) for db, tbl in \
else ".", unsafeSQLIdentificatorNaming(t)) for t in tbl) for db, tbl in \
kb.data.cachedTables.items()])
logger.info(infoMsg)