Skip to content

Commit

Permalink
BUG: use correct private parameter variable
Browse files Browse the repository at this point in the history
Closes: #2084
  • Loading branch information
Birger Schacht committed Aug 31, 2021
1 parent c9f3ec2 commit fd4f88f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intelmq/bin/intelmqctl.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def load_defaults_configuration(self, silent=False):
elif value.isnumeric():
value = int(value)

setattr(self.parameters, option, value)
setattr(self._parameters, option, value)

def run(self):
results = None
Expand Down

0 comments on commit fd4f88f

Please sign in to comment.