Skip to content

Commit

Permalink
fix get project (#1475)
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaume authored Dec 20, 2022
1 parent 1efa8ce commit d5e59bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpcontribs-client/mpcontribs/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -950,7 +950,7 @@ def init_columns(self, columns: dict = None) -> dict:
sorted_columns = flatten(unflatten(columns, splitter="dot"), reducer="dot")

# reconcile with existing columns
resp = self.projects.getProjectById(pk=self.project, _fields=["columns"]).result()
resp = self.projects.getProjectByName(pk=self.project, _fields=["columns"]).result()
existing_columns = {}

for col in resp["columns"]:
Expand Down

0 comments on commit d5e59bc

Please sign in to comment.