This commit is contained in:
Stavros Korokithakis
2021-01-07 22:56:05 +02:00
parent 64b33ee9a4
commit 3762266edf

View File

@@ -89,7 +89,6 @@ class JoplinExporter:
conn = sqlite3.connect(self.joplin_dir / "database.sqlite")
c = conn.cursor()
# Create table
c.execute("""SELECT id, title FROM folders;""")
self.folders = {id: title for id, title in c.fetchall()}