Codebase list python-faraday / debian/2.3.1-0kali1
Add a patch to fix a syntax error Sophie Brun 7 years ago
3 changed file(s) with 18 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
00 python-faraday (2.3.1-0kali1) kali-dev; urgency=medium
11
22 * Import new upstream release
3 * Add a patch to fix a syntax error
34
45 -- Sophie Brun <[email protected]> Thu, 09 Feb 2017 09:42:28 +0100
56
0 Description: Fix a syntax error
1 Author: Sophie Brun <[email protected]>
2 Last-Update: 2017-02-09
3 ---
4 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
5 --- a/helpers/plugins/canvas/faraday_report/faraday_report.py
6 +++ b/helpers/plugins/canvas/faraday_report/faraday_report.py
7 @@ -162,7 +162,7 @@ class ParsingCanvas():
8 interface_id,
9 str(int(float(port))),
10 'tcp?',
11 - [int(float(port)])
12 + [int(float(port))]
13 )
14
15 host.addService(ip, port, service_id)
00 remove-unwanted-checks.diff
11 copy-images-directory.patch
2 fix-syntax-error.patch