summaryrefslogtreecommitdiff
path: root/db.py
diff options
context:
space:
mode:
Diffstat (limited to 'db.py')
-rw-r--r--db.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/db.py b/db.py
index 81e5e86..fc678cc 100644
--- a/db.py
+++ b/db.py
@@ -180,12 +180,10 @@ class Track(Base):
s_and = []
for i in args:
s_and.append(f.name.ilike('%{0}%'.format(i)))
- s_or.append(and_(*s_and))
+ if len(s_and):
+ s_or.append(and_(*s_and))
if len(s_or):
r = r.filter(or_(*s_or))
- r = r#.limit(100)
- #.all()
- #print r
return r
def get_path(self):