Implement a variant of the Demo protocol from Markus
include LOTs of bugfixes as well todo: documentation! Change-Id: I52252ade34966d24990afd9672f38049882c3199
This commit is contained in:
@ -40,12 +40,11 @@ for dirpath, dirnames, filenames in os.walk(DOC_SRC):
|
||||
except OSError:
|
||||
pass
|
||||
|
||||
|
||||
for fn in filenames:
|
||||
full_name = path.join(dirpath, fn)
|
||||
sub_name = path.relpath(full_name, DOC_SRC)
|
||||
final_name = path.join(DOC_DST, sub_name)
|
||||
|
||||
|
||||
if not fn.endswith('md'):
|
||||
# just copy everything else
|
||||
with open(full_name, 'rb') as fi:
|
||||
|
@ -67,7 +67,7 @@ def main(argv=None):
|
||||
args = parseArgv(argv[1:])
|
||||
|
||||
loglevel = 'debug' if args.verbose else ('error' if args.quiet else 'info')
|
||||
loggers.initLogging('secop', loglevel, path.join(log_path))
|
||||
loggers.initLogging('secop', loglevel, log_path)
|
||||
|
||||
srv = Server(args.name, basepath)
|
||||
|
||||
|
Reference in New Issue
Block a user