Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bcolors.py « tools « scons « build_files - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b01bb781524408c5bfae16e6e4c0484b40f780fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class bcolors:
    HEADER = '\033[95m'
    OKBLUE = '\033[94m'
    OKGREEN = '\033[92m'
    WARNING = '\033[93m'
    FAIL = '\033[91m'
    ENDC = '\033[0m'

    def disable(self):
        self.HEADER = ''
        self.OKBLUE = ''
        self.OKGREEN = ''
        self.WARNING = ''
        self.FAIL = ''
        self.ENDC = ''