Minor style update

This commit is contained in:
Miroslav Stampar
2012-07-13 12:22:37 +02:00
parent 6ade007aec
commit 3c81f74823
6 changed files with 25 additions and 27 deletions

View File

@@ -503,10 +503,10 @@ class Dump:
if tbl in _[db]:
_[db][tbl][col] = dataType
else:
_[db][tbl] = { col: dataType }
_[db][tbl] = {col: dataType}
else:
_[db] = {}
_[db][tbl] = { col: dataType }
_[db][tbl] = {col: dataType}
continue