Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c37f485 commit 0c8c4faCopy full SHA for 0c8c4fa
1 file changed
lib/core/dump.py
@@ -398,11 +398,11 @@ def dbTableValues(self, tableValues):
398
self._write(tableValues, content_type=CONTENT_TYPE.DUMP_TABLE)
399
return
400
401
+ dumpDbPath = os.path.join(conf.dumpPath, unsafeSQLIdentificatorNaming(db))
402
+
403
if conf.dumpFormat == DUMP_FORMAT.SQLITE:
404
replication = Replication(os.path.join(conf.dumpPath, "%s.sqlite3" % unsafeSQLIdentificatorNaming(db)))
405
elif conf.dumpFormat in (DUMP_FORMAT.CSV, DUMP_FORMAT.HTML):
- dumpDbPath = os.path.join(conf.dumpPath, unsafeSQLIdentificatorNaming(db))
-
406
if not os.path.isdir(dumpDbPath):
407
try:
408
os.makedirs(dumpDbPath, 0755)
0 commit comments