Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-poetry
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
python-poetry
Commits
43bd3159
Unverified
Commit
43bd3159
authored
May 29, 2018
by
Sébastien Eustace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix UnicodeDecodeError on venv error
parent
b6f4488e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
+2
-1
CHANGELOG.md
+1
-0
poetry/utils/venv.py
+1
-1
No files found.
CHANGELOG.md
View file @
43bd3159
...
...
@@ -5,6 +5,7 @@
### Fixed
-
Fixed handling of
`in`
environment markers with commas.
-
Fixed a
`UnicodeDecodeError`
when an error occurs in venv.
## [0.10.1] - 2018-05-28
...
...
poetry/utils/venv.py
View file @
43bd3159
...
...
@@ -23,7 +23,7 @@ class VenvCommandError(VenvError):
def
__init__
(
self
,
e
):
# type: (CalledProcessError) -> None
message
=
'Command {} errored with the following output:
\n
{}'
.
format
(
e
.
cmd
,
e
.
output
.
decode
(
)
e
.
cmd
,
decode
(
e
.
output
)
)
super
(
VenvCommandError
,
self
)
.
__init__
(
message
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment