From 1733c896761a5611a169ef74a2ac991207078c36 Mon Sep 17 00:00:00 2001
From: ale <ale@incal.net>
Date: Wed, 28 Sep 2011 10:12:26 +0100
Subject: [PATCH] minor fixes

---
 client/djrandom_client/upload.py | 2 +-
 client/setup.py                  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/client/djrandom_client/upload.py b/client/djrandom_client/upload.py
index 206f06e..f4f2197 100644
--- a/client/djrandom_client/upload.py
+++ b/client/djrandom_client/upload.py
@@ -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
 
diff --git a/client/setup.py b/client/setup.py
index 60cd80b..2f12f58 100644
--- a/client/setup.py
+++ b/client/setup.py
@@ -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(),
-- 
GitLab