Skip to content

Commit

Permalink
Fix wrong var name
Browse files Browse the repository at this point in the history
Nobody hit this in 10 months!
  • Loading branch information
rogerbinns committed Aug 26, 2024
1 parent f07a42a commit 451769d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ def finalize_options(self):
if os.path.isdir(sqlite3_dir) and len(glob.glob(os.path.join(sqlite3_dir, "*"))) > 3:
write("SQLite: Using include/libraries in sqlite3 subdirectory")
inc = True
ext.library_dirs.append(d)
ext.library_dirs.append(sqlite3_dir)
else:
write("SQLite: Using system sqlite include/libraries")
if inc:
Expand Down

0 comments on commit 451769d

Please sign in to comment.