mirror of
https://github.com/progval/irctest.git
synced 2025-04-04 14:29:46 +00:00
Update for the new InspIRCd development branch.
This commit is contained in:
committed by
Val Lorentz
parent
f265e28702
commit
330300eba1
@ -98,8 +98,9 @@ def installed_version() -> int:
|
||||
return 3
|
||||
if output.startswith("InspIRCd-4"):
|
||||
return 4
|
||||
else:
|
||||
assert False, f"unexpected version: {output}"
|
||||
if output.startswith("InspIRCd-5"):
|
||||
return 5
|
||||
assert False, f"unexpected version: {output}"
|
||||
|
||||
|
||||
class InspircdController(BaseServerController, DirectoryBasedController):
|
||||
@ -142,7 +143,7 @@ class InspircdController(BaseServerController, DirectoryBasedController):
|
||||
|
||||
if installed_version() == 3:
|
||||
help_module_name = "helpop"
|
||||
elif installed_version() == 4:
|
||||
elif installed_version() >= 4:
|
||||
help_module_name = "help"
|
||||
else:
|
||||
assert False, f"unexpected version: {installed_version()}"
|
||||
|
Reference in New Issue
Block a user