From 85c49e6924634396dec7c0ab70458c3b5f0c5d2a Mon Sep 17 00:00:00 2001 From: debugtalk Date: Tue, 6 Mar 2018 14:44:36 +0800 Subject: [PATCH] fix setup --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 6c422e47..731bd841 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,6 @@ import io import os import sys from shutil import rmtree -from httprunner.logger import color_print from setuptools import Command, find_packages, setup @@ -33,8 +32,8 @@ class UploadCommand(Command): @staticmethod def status(s): - """Prints things in yellow color.""" - color_print(s, "yellow") + """Prints things in green color.""" + print("\033[0;32m{0}\033[0m".format(s)) def initialize_options(self): """ override