Skip to content

Commit

Permalink
fix: open firefix fav folder not woring
Browse files Browse the repository at this point in the history
  • Loading branch information
klesh committed Dec 31, 2023
1 parent 5acc48e commit c2756b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jigsawwm/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def open_firefox_fav_folder(places_path, fav_folder='daily'):
"""
con = sqlite3.connect(places_path)
cur = con.cursor()
res = cur.execute(sql_query, fav_folder)
res = cur.execute(sql_query, [fav_folder])
for url, in res.fetchall():
os.startfile(url)

Expand Down

0 comments on commit c2756b8

Please sign in to comment.