Lion3000

Results 2 comments of Lion3000

ok, it comes from bad implementation of inheritance: ``` commandSetModule = importlib.import_module('..commandset.' + commandSet.lower(), __name__) commandSetClass = getattr(commandSetModule, commandSet) class NetworkPrinter(commandSetClass): def __init__(self, host, port=9100, initialize=True): self.host = host self.port...

Hi, I was stuck with the same issue but I created a fix to it 👍 Now my printer works in my network: Solution is : Edit the following file...