Removed wrong constructor argument
This commit is contained in:
@@ -38,11 +38,11 @@ class Rspamd(base.Installer):
|
|||||||
]
|
]
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
super().__init__(self, *args, **kwargs)
|
super().__init__(*args, **kwargs)
|
||||||
self.generate_password_condition = (not self.upgrade or
|
self.generate_password_condition = (
|
||||||
utils.user_input(
|
not self.upgrade or utils.user_input(
|
||||||
"Do you want to (re)generate rspamd password ? (y/N)").lower().startswith("y")
|
"Do you want to (re)generate rspamd password ? (y/N)").lower().startswith("y")
|
||||||
)
|
)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def config_dir(self):
|
def config_dir(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user