Skip to content

Commit

Permalink
Fix an error when publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed Jul 30, 2018
1 parent e61fec7 commit 9dac5bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Fixed

- Fixed wrong wheel being selected when resolving dependencies.
- Fixed an error when publishing.


## [0.11.3] - 2018-07-26
Expand Down
2 changes: 1 addition & 1 deletion poetry/masonry/publishing/publisher.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def publish(self, repository_name, username, password):
"Unable to get repository information"
)

config = config_file.read(raw=True)
config = config_file.read()

if (
"repositories" not in config
Expand Down

0 comments on commit 9dac5bf

Please sign in to comment.