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,12 +1355,8 @@ class CommandProcess(world.SupyProcess):
|
|||||||
pn,
|
pn,
|
||||||
cn)
|
cn)
|
||||||
log.debug('Spawning process %s (args: %r)', procName, args)
|
log.debug('Spawning process %s (args: %r)', procName, args)
|
||||||
self.__parent = super(CommandProcess, self)
|
super().__init__(target=target, name=procName,
|
||||||
self.__parent.__init__(target=target, name=procName,
|
args=args, kwargs=kwargs)
|
||||||
args=args, kwargs=kwargs)
|
|
||||||
|
|
||||||
def run(self):
|
|
||||||
self.__parent.run()
|
|
||||||
|
|
||||||
class CanonicalString(registry.NormalizedString):
|
class CanonicalString(registry.NormalizedString):
|
||||||
def normalize(self, s):
|
def normalize(self, s):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user