We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 071bc2d commit 25d8578Copy full SHA for 25d8578
hacker_news_to_sqlite/cli.py
@@ -30,7 +30,7 @@ def user(db_path, username):
30
)
31
# Only do IDs we have not yet fetched
32
done = set()
33
- if db["items"].exists():
+ if "items" in db.table_names():
34
done = set(
35
r[0]
36
for r in db.conn.execute(
setup.py
@@ -1,7 +1,7 @@
1
from setuptools import setup
2
import os
3
4
-VERSION = "0.1a"
+VERSION = "0.2a"
5
6
7
def get_long_description():
0 commit comments