Commit a879e8ac by Sébastien Eustace

Fix an AttributeError in the editable builder

parent aab8a450
# Change Log # Change Log
## [Unreleased]
### Fixed
- Fixed an `AttributeError` in the editable builder.
## [0.12.14] - 2019-04-26 ## [0.12.14] - 2019-04-26
### Fixed ### Fixed
......
...@@ -22,7 +22,7 @@ class EditableBuilder(Builder): ...@@ -22,7 +22,7 @@ class EditableBuilder(Builder):
has_setup = setup.exists() has_setup = setup.exists()
if has_setup: if has_setup:
self._io.write_line( self._io.writeln(
"<warning>A setup.py file already exists. Using it.</warning>" "<warning>A setup.py file already exists. Using it.</warning>"
) )
else: else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment