Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6010db5

Browse files
committed
Minor Travis patch
1 parent 3915b45 commit 6010db5

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/core/common.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2265,7 +2265,7 @@ def average(values):
22652265
"""
22662266
Computes the arithmetic mean of a list of numbers.
22672267
2268-
>>> average([0.9, 0.9, 0.9, 1.0, 0.8, 0.9])
2268+
>>> round(average([0.9, 0.9, 0.9, 1.0, 0.8, 0.9]), 1)
22692269
0.9
22702270
"""
22712271

@@ -2278,8 +2278,8 @@ def stdev(values):
22782278
22792279
# Reference: http://www.goldb.org/corestats.html
22802280
2281-
>>> stdev([0.9, 0.9, 0.9, 1.0, 0.8, 0.9])
2282-
0.06324555320336757
2281+
>>> round(stdev([0.9, 0.9, 0.9, 1.0, 0.8, 0.9]), 3)
2282+
0.063
22832283
"""
22842284

22852285
if not values or len(values) < 2:

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty import six
1919

2020
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21-
VERSION = "1.3.5.66"
21+
VERSION = "1.3.5.67"
2222
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2323
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2424
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

0 commit comments

Comments
 (0)