fix setup

This commit is contained in:
debugtalk
2018-03-06 14:44:36 +08:00
parent 1de4d6c6cc
commit 85c49e6924
+2 -3
View File
@@ -3,7 +3,6 @@ import io
import os import os
import sys import sys
from shutil import rmtree from shutil import rmtree
from httprunner.logger import color_print
from setuptools import Command, find_packages, setup from setuptools import Command, find_packages, setup
@@ -33,8 +32,8 @@ class UploadCommand(Command):
@staticmethod @staticmethod
def status(s): def status(s):
"""Prints things in yellow color.""" """Prints things in green color."""
color_print(s, "yellow") print("\033[0;32m{0}\033[0m".format(s))
def initialize_options(self): def initialize_options(self):
""" override """ override