Skip to content

Commit

Permalink
fixed boundary assert
Browse files Browse the repository at this point in the history
  • Loading branch information
petr-s committed Mar 25, 2016
1 parent c748238 commit b5e254a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clearest/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def parse_www_form(input_file, n, extras):
return parse_qs(input_file.read(n))

def parse_form_data(input_file, n, extras):
assert "boundary" not in extras
assert "boundary" in extras
kwargs = {}
state = 0 # TODO: enum
name = None
Expand Down

0 comments on commit b5e254a

Please sign in to comment.