File: 04_remove_python3_unicodecsv.patch

package info (click to toggle)
recon-ng 5.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 612 kB
  • sloc: python: 3,535; javascript: 643; sh: 90; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 410 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
From: Alexandre Detiste <tchet@debian.org>
Bug: 1058972
Subject: allow removal of old python3-unicodecsv
Forwarded: https://github.com/lanmaster53/recon-ng/pull/238

--- a/recon/core/web/exports.py
+++ b/recon/core/web/exports.py
@@ -5,7 +5,7 @@
 from recon.core.web.utils import add_worksheet, is_url
 import os
 import requests
-import unicodecsv as csv
+import csv
 import xlsxwriter
 
 def _jsonify(rows):