Skip to content

Commit

Permalink
Merge pull request #60 from prio-data/revert_url_fix
Browse files Browse the repository at this point in the history
revert broken fix to qsm url
  • Loading branch information
jimdale committed Apr 16, 2024
2 parents 2998d60 + da85be5 commit a4da2ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "viewser"
version = "6.3.1"
version = "6.3.2"
description = "The Views 3 CLI tool"
authors = ["peder2911 <pglandsverk@gmail.com>"]
readme = "README.md"
Expand Down
4 changes: 1 addition & 3 deletions viewser/commands/queryset/operations.py
Expand Up @@ -78,9 +78,7 @@ def publish(self, queryset: queryset_schema.Queryset, overwrite: bool = True) ->

method = "POST"

print(self._remote_url)

url = self._remote_url + "?" + parse.urlencode({"overwrite": overwrite})
url = self._remote_url + "/querysets?" + parse.urlencode({"overwrite": overwrite})

request_kwargs = {"headers": {}}

Expand Down

0 comments on commit a4da2ac

Please sign in to comment.