Skip to content
Snippets Groups Projects
Commit 1733c896 authored by ale's avatar ale
Browse files

minor fixes

parent ae6e8ab9
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ class FileDatabase(object):
if not dbpath.endswith('.db'):
dbpath += '.db'
is_new = not os.path.exist(dbpath)
is_new = not os.path.exists(dbpath)
self.conn = sqlite3.connect(dbpath)
self.conn.text_factory = str
......
......@@ -19,7 +19,7 @@ setup(
author="ale",
author_email="ale@incal.net",
url="http://git.autistici.org/git/djrandom.git",
install_requires=platform_requires,
install_requires=['pysqlite'] + platform_requires,
setup_requires=[],
zip_safe=True,
packages=find_packages(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment