Skip to content

Commit

Permalink
fix: INDEX variable name change
Browse files Browse the repository at this point in the history
  • Loading branch information
terriko committed Jul 3, 2024
1 parent 3d22f6b commit c2f8608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cve_bin_tool/cvedb.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def populate_purl2cpe(self):
# we are occasionally seeing an error where the cache doesn't have
# purl2cpe and thus we get an error, so attempt to initalize here
cve_cursor.execute(self.TABLE_SCHEMAS["purl2cpe"])
cve_cursor.execute(self.TABLE_INDEXES["purl"])
cve_cursor.execute(self.INDEXES["purl"])

purl2cpe_cursor.execute("SELECT purl, cpe FROM purl2cpe")

Expand Down

0 comments on commit c2f8608

Please sign in to comment.