From 4db109cbaf8eb24166875063af4f584b72a6da02 Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Wed, 7 Sep 2022 10:32:49 -0400 Subject: [PATCH] kojivmd: import xmlrpc.server The xmlrpc.server module is separate from the main xmlrpc module, and we must explicitly import it in order to use it in DaemonXMLRPCServer. --- vm/kojivmd | 1 + 1 file changed, 1 insertion(+) diff --git a/vm/kojivmd b/vm/kojivmd index 616b362f..b791a230 100755 --- a/vm/kojivmd +++ b/vm/kojivmd @@ -36,6 +36,7 @@ import sys import threading import time import xmlrpc +import xmlrpc.server from contextlib import closing from optparse import OptionParser