1
0

config v2: change server protocol to :s instead of removing it

This commit is contained in:
SomberNight
2018-01-16 11:53:31 +01:00
parent 0d1ea09ed1
commit f77f029d72
2 changed files with 6 additions and 2 deletions

View File

@@ -77,8 +77,12 @@ class PrintError(object):
return self.__class__.__name__
def print_error(self, *msg):
# only prints with --verbose flag
print_error("[%s]" % self.diagnostic_name(), *msg)
def print_stderr(self, *msg):
print_stderr("[%s]" % self.diagnostic_name(), *msg)
def print_msg(self, *msg):
print_msg("[%s]" % self.diagnostic_name(), *msg)