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 a52dbc5 commit 6f7f9ddCopy full SHA for 6f7f9dd
2 files changed
lib/core/option.py
@@ -1409,9 +1409,6 @@ class _(unicode): pass
1409
for _ in DUMP_REPLACEMENTS.keys():
1410
del DUMP_REPLACEMENTS[_]
1411
1412
- if conf.sessionFile:
1413
- conf.hashDBFile = conf.sessionFile
1414
-
1415
threadData = getCurrentThreadData()
1416
threadData.reset()
1417
lib/core/target.py
@@ -252,7 +252,7 @@ def __setHashDB():
252
"""
253
254
if not conf.hashDBFile:
255
- conf.hashDBFile = "%s%ssession.sqlite" % (conf.outputPath, os.sep)
+ conf.hashDBFile = conf.sessionFile or "%s%ssession.sqlite" % (conf.outputPath, os.sep)
256
257
if os.path.exists(conf.hashDBFile):
258
if conf.flushSession:
0 commit comments