Skip to content

Commit

Permalink
removed invalid filter from parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Aug 7, 2015
1 parent 89d0b47 commit b5503e6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/appier/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1340,6 +1340,10 @@ def _find_d(cls, kwargs):
# so that they may be used to update the provided arguments with
# the filter defined in each of their lines
for filter in find_d:
# in case the filter is not valid (unset or invalid) it's going
# to be ignored as no valid information is present
if not filter: continue

# splits the filter string into its three main components
# the name, operator and value, that are going to be processed
# as defined by the specification to create the filter
Expand Down

0 comments on commit b5503e6

Please sign in to comment.