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 7ad9639 commit e2a0f7aCopy full SHA for e2a0f7a
2 files changed
lib/core/option.py
@@ -314,7 +314,7 @@ def __setHTTPUserAgent():
314
logger.debug(debugMsg)
315
316
try:
317
- fd = open(conf.userAgentsFile)
+ fd = open(conf.userAgentsFile, "r")
318
except IOError:
319
warnMsg = "unable to read HTTP User-Agent header "
320
warnMsg += "file '%s'" % conf.userAgentsFile
plugins/dbms/mysql.py
@@ -294,7 +294,7 @@ def checkDbms(self):
294
if not conf.extensiveFp:
295
return True
296
297
- # Check which version of MySQL , 5.0.0 it is
+ # Check which version of MySQL < 5.0.0 it is
298
coercibility = inject.getValue("COERCIBILITY(USER())")
299
300
if coercibility == "3":
0 commit comments