Remove submodule; all of pvc client is in one file

This commit is contained in:
2018-08-11 14:05:16 -04:00
parent d205ef2072
commit 37906fdd25
4 changed files with 22 additions and 83 deletions

24
pvc.py
View File

@ -34,12 +34,32 @@ import lxml.objectify
import configparser
import kazoo.client
import pvc.ansiiprint as ansiiprint
###############################################################################
# Supplemental functions
###############################################################################
#
# ansiiprint output
#
class ansiiprint:
# ANSII colours for output
def red():
return '\033[91m'
def blue():
return '\033[94m'
def green():
return '\033[92m'
def yellow():
return '\033[93m'
def purple():
return '\033[95m'
def bold():
return '\033[1m'
def end():
return '\033[0m'
#
# Validate a UUID
#