diff options
| author | Kenneth Reitz <me@kennethreitz.com> | 2011-02-18 01:34:18 -0500 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.com> | 2011-02-18 01:34:18 -0500 |
| commit | 828017f9a747b1a2c7017154ef7ffbabb9bd12f5 (patch) | |
| tree | 57e18277c8c7a2d55837b1aae5d4752d46583d81 /tablib | |
| parent | cff8a6ac9a95bfbcb88280c866e17c3d9491d606 (diff) | |
| download | tablib-828017f9a747b1a2c7017154ef7ffbabb9bd12f5.tar.gz | |
wtf? is that even valid?
Diffstat (limited to 'tablib')
| -rw-r--r-- | tablib/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tablib/core.py b/tablib/core.py index 78c7481..a8ad75a 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -86,7 +86,7 @@ class Row(object): elif isinstance(tag, basestring): return (tag in self.tags) else: - return True if len(set(tag) & set(self.tags)) else False + return True if len(set(tag) and set(self.tags)) else False class Dataset(object): |
