mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Don't print extra strings to stdout
Signed-off-by: Dan Ryan <dan.ryan@xyleminc.com>
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
# -*- coding=utf-8 -*-
|
||||
from __future__ import print_function
|
||||
import errno
|
||||
import json
|
||||
import os
|
||||
@@ -328,8 +329,8 @@ class _PipenvInstance(object):
|
||||
# Pretty output for failing tests.
|
||||
if block:
|
||||
print('$ pipenv {0}'.format(cmd))
|
||||
print('Output: {0}'.format(c.out))
|
||||
print('Error: {0}'.format(c.err))
|
||||
print(c.out)
|
||||
print(c.err, file=sys.stderr)
|
||||
if c.return_code != 0:
|
||||
print("Command failed...")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user