Skip to content

Commit

Permalink
minor JSON output bug fix
Browse files Browse the repository at this point in the history
inserted tech_json list for JSON outputting
  • Loading branch information
jobroche committed Mar 6, 2016
1 parent 90f4f21 commit 7c96036
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion InSpy.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python2
# Copyright (c) 2016 Jonathan Broche (@g0jhonny)

from lib.logger import *
from lib.soupify import *
Expand Down Expand Up @@ -33,7 +34,7 @@
sys.exit(1)

stime = time.time()
tech_html, employee_html, tech_csv, employee_csv, employee_json = [], [], [], [], []
tech_html, employee_html, tech_csv, employee_csv, tech_json, employee_json = [], [], [], [], [], []

if args.techspy:
if os.path.exists(os.path.abspath(args.techspy)):
Expand Down

0 comments on commit 7c96036

Please sign in to comment.