diff --git a/bear/__init__.py b/bear/__init__.py index 388264a..9eea312 100644 --- a/bear/__init__.py +++ b/bear/__init__.py @@ -26,7 +26,7 @@ import sqlite3 import datetime -__version__ = '0.0.20200629' +__version__ = '0.0.20200914' def timestamp_to_datetime(s): ''' @@ -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