added a TODO:
if the user may passes '' (empty string) as database name via command line, his choice is ignored when we parse the xml we allow for ''. there has to be a decission if to allow '' or not
This commit is contained in:
parent
d3eeeef2e8
commit
fb76540df6
|
@ -398,7 +398,8 @@ class Config:
|
||||||
if self.db_selected is None or db.db_selected:
|
if self.db_selected is None or db.db_selected:
|
||||||
self.db_selected = db.db_name
|
self.db_selected = db.db_name
|
||||||
self.supported_databases[db.db_name] = db
|
self.supported_databases[db.db_name] = db
|
||||||
|
#TODO: if the user may passes '' (empty string) as database name via command line, his choice is ignored
|
||||||
|
# when we parse the xml we allow for ''. there has to be a decission if to allow '' or not
|
||||||
if dbname and dbname in self.supported_databases:
|
if dbname and dbname in self.supported_databases:
|
||||||
self.db_selected = dbname
|
self.db_selected = dbname
|
||||||
#NOTE: fpdb can not handle the case when no database is defined in xml, so we throw an exception for now
|
#NOTE: fpdb can not handle the case when no database is defined in xml, so we throw an exception for now
|
||||||
|
|
Loading…
Reference in New Issue
Block a user