From 9e62818eb682fa85d0fb583ce10940d901ec75cd Mon Sep 17 00:00:00 2001 From: ExploitXx <50595045+ExploitXx@users.noreply.github.com> Date: Wed, 12 May 2021 12:20:34 +0100 Subject: [PATCH 1/2] Fix for exporting csv file --- LinkedInt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LinkedInt.py b/LinkedInt.py index e841e33..781524f 100644 --- a/LinkedInt.py +++ b/LinkedInt.py @@ -311,7 +311,7 @@ def get_search(): f.close() f = open(baseDir + '{}.csv'.format(outfile), 'wb') newcsv='\n'.join(csv) - f.writelines(newcsv.encode()) + f.write(newcsv.encode()) for x in csv: f.write(x.join('\n').encode()) f.close() From 2f933a61843062edbca6fbaa53cb4ccc7972b1ef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Jun 2021 21:53:23 +0000 Subject: [PATCH 2/2] Bump urllib3 from 1.24.2 to 1.26.5 Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.24.2 to 1.26.5. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](https://github.com/urllib3/urllib3/compare/1.24.2...1.26.5) --- updated-dependencies: - dependency-name: urllib3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index fa2a850..27edbb7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,4 +4,4 @@ chardet==3.0.4 idna==2.6 requests==2.20.0 thready==0.1.5 -urllib3==1.24.2 +urllib3==1.26.5