From ced4f80fbc47c947fbd6d1273323c257faab4f5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20=C5=A0uppa?= Date: Sat, 29 Jan 2022 17:01:06 +0100 Subject: [PATCH] fix: Add missing comma to `headers.py` * This comma has been most probably been left out unintentionally, leading to string concatenation between the two consecutive lines. This issue has been found automatically using a regular expression. --- modules/headers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/headers.py b/modules/headers.py index 22aa429..c7b751b 100644 --- a/modules/headers.py +++ b/modules/headers.py @@ -32,8 +32,8 @@ 'User-Agent', 'Upgrade', 'Via', - 'Warning' - 'X-Requested-With' + 'Warning', + 'X-Requested-With', 'X-Forwarded-For', 'X-Forwarded-Host', 'X-Forwarded-Proto', @@ -46,4 +46,4 @@ 'X-Csrf-Token', 'X-CSRFToken', 'X-XSRF-TOKEN'] - \ No newline at end of file +