We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e42652 commit 6330656Copy full SHA for 6330656
roundup/cgi/templating.py
@@ -2429,10 +2429,10 @@ def add(k, v):
2429
if filter and self.filter:
2430
add(sc+'filter', ','.join(self.filter))
2431
if self.classname and filterspec:
2432
- props = self.client.db.getclass(self.classname).getprops()
+ cls = self.client.db.getclass(self.classname)
2433
for k,v in self.filterspec.items():
2434
if type(v) == type([]):
2435
- if isinstance(props[k], hyperdb.String):
+ if isinstance(cls.get_transitive_prop(k), hyperdb.String):
2436
add(k, ' '.join(v))
2437
else:
2438
add(k, ','.join(v))
0 commit comments