Skip to content

Commit 34044cc

Browse files
authored
Fix horrible typo
1 parent 4fe4af5 commit 34044cc

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)