Skip to content

Commit

Permalink
HotFix-1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Ceterai committed Apr 21, 2020
1 parent 45d57dc commit 0ca25fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions djpp/pyproject.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ def convert(key, value, path, data):
concat.append(data['poetry'].get(value['poetry']))
value = ''.join(concat)
else:
for k in value:
value[k] = convert(k, value[k], path, data)
for i in value:
value[i] = conv_value(value[i], path, data)
return {key: value}


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "django-pyproject"
version = "1.0.4"
version = "1.0.5"
description = "A package for storing Django settings in pyproject.toml."
authors = ["Ceterai <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 0ca25fc

Please sign in to comment.