Skip to content

Commit 5ed4596

Browse files
authored
Merge pull request #32 from EIDA/jschaeff-patch-1
Fix horrible typo
2 parents 4fe4af5 + 34044cc commit 5ed4596

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/root.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def get_post_params():
132132
paramslist = list()
133133
code = ("network", "station", "location", "channel")
134134
exclude = ("net", "sta", "cha", "loc", "starttime", "endtime", "constraints")
135-
post_params = [(k for k in Parameters().todict() if k not in exclude]
135+
post_params = [k for k in Parameters().todict() if k not in exclude]
136136

137137
# Universal newline decoding :
138138
stream = io.StringIO(request.stream.read().decode("UTF8"), newline=None)

0 commit comments

Comments
 (0)