Skip to content

Commit

Permalink
Merge pull request #174 from ryneeverett/fix-typeerror
Browse files Browse the repository at this point in the history
Fix TypeError
  • Loading branch information
obsidianforensics authored May 8, 2024
2 parents 34bc9fa + 9f90a3b commit 4948de4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyhindsight/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -1081,9 +1081,9 @@ def generate_sqlite(self, output_file_path='.temp_db'):
if item.row_type.startswith('url'):
c.execute(
'INSERT INTO timeline (type, timestamp, url, title, interpretation, profile, source, '
'visit_id', 'from_visit', 'visit_duration, visit_count, typed_count, url_hidden, transition) '
'visit_id, from_visit, visit_duration, visit_count, typed_count, url_hidden, transition) '
'VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)',
(item.row_type, friendly_date(item.timestamp), item.url, item.name, item.interpretation,
(item.row_type, friendly_date(item.timestamp), item.url, item.name, item.interpretation,
item.profile, item.visit_source, item.visit_duration, item.visit_id, item.from_visit, item.visit_count, item.typed_count,
item.hidden, item.transition_friendly))

Expand Down

0 comments on commit 4948de4

Please sign in to comment.