Codebase list emailharvester / e208693
Add a patch to fix a small Python 3 syntax error Sophie Brun 4 years ago
3 changed file(s) with 28 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 emailharvester (1.3.2+git20191005-0kali2) kali-dev; urgency=medium
1
2 * Add a patch to fix a small Python 3 syntax error
3
4 -- Sophie Brun <[email protected]> Wed, 08 Apr 2020 11:53:26 +0200
5
06 emailharvester (1.3.2+git20191005-0kali1) kali-dev; urgency=medium
17
28 * Initial release
0 From: Sophie Brun <[email protected]>
1 Date: Wed, 8 Apr 2020 11:53:05 +0200
2 Subject: Fix smal Python 3 syntax error
3
4 ---
5 EmailHarvester.py | 2 +-
6 1 file changed, 1 insertion(+), 1 deletion(-)
7
8 diff --git a/EmailHarvester.py b/EmailHarvester.py
9 index fe96f7e..9bc86c7 100644
10 --- a/EmailHarvester.py
11 +++ b/EmailHarvester.py
12 @@ -233,7 +233,7 @@ if __name__ == '__main__':
13 parser.add_argument('-p', '--list-plugins', action='store_true', dest='listplugins',
14 default=False, help='List all available plugins.')
15
16 - if len(sys.argv) is 1:
17 + if len(sys.argv) == 1:
18 parser.print_help()
19 sys.exit()
20
0 Fix-smal-Python-3-syntax-error.patch