mirror of
https://github.com/progval/Limnoria.git
synced 2025-04-26 13:01:06 -05:00
callbacks.CommandProcess: Fix Python 3.14 support
This commit is contained in:
parent
9963fe3f7b
commit
7987386dff
@ -1355,13 +1355,9 @@ class CommandProcess(world.SupyProcess):
|
||||
pn,
|
||||
cn)
|
||||
log.debug('Spawning process %s (args: %r)', procName, args)
|
||||
self.__parent = super(CommandProcess, self)
|
||||
self.__parent.__init__(target=target, name=procName,
|
||||
super().__init__(target=target, name=procName,
|
||||
args=args, kwargs=kwargs)
|
||||
|
||||
def run(self):
|
||||
self.__parent.run()
|
||||
|
||||
class CanonicalString(registry.NormalizedString):
|
||||
def normalize(self, s):
|
||||
return canonicalName(s)
|
||||
|
Loading…
x
Reference in New Issue
Block a user