Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bear/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import sqlite3
import datetime

__version__ = '0.0.20200629'
__version__ = '0.0.20200914'

def timestamp_to_datetime(s):
'''
Expand Down Expand Up @@ -246,7 +246,7 @@ def _row_to_note(self, row):
def get_note(self, id):
cursor = self._db.cursor()
cursor.execute(
'SELECT * FROM ZFSNOTE WHERE ZUNIQUEIDENTIFIER = ?', [id])
'SELECT * FROM ZSFNOTE WHERE ZUNIQUEIDENTIFIER = ?', [id])
row = cursor.fetchone()
if not row:
return None
Expand Down