##// END OF EJS Templates
sqlite/sqlite3 typo
MinRK -
Show More
@@ -56,7 +56,7 b' class DummyDB(object):'
56 @decorator
56 @decorator
57 def needs_sqlite(f, self, *a, **kw):
57 def needs_sqlite(f, self, *a, **kw):
58 """return an empty list in the absence of sqlite"""
58 """return an empty list in the absence of sqlite"""
59 if sqlite is None or self.disabled:
59 if sqlite3 is None or self.disabled:
60 return []
60 return []
61 else:
61 else:
62 return f(self, *a, **kw)
62 return f(self, *a, **kw)
General Comments 0
You need to be logged in to leave comments. Login now