Skip to content

Commit

Permalink
Fixed Option String List
Browse files Browse the repository at this point in the history
  • Loading branch information
derickdiaz committed Oct 19, 2023
1 parent fbc26e6 commit f9e0aa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dnf/automatic/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def __init__(self):
libdnf.conf.VectorString(['email', 'stdio'])))
self.add_option('output_width', libdnf.conf.OptionNumberInt32(80))
self.add_option('system_name', libdnf.conf.OptionString(socket.gethostname()))
self.add_option('send_error_messages', libdnf.conf.OptionString(
self.add_option('send_error_messages', libdnf.conf.OptionStringList(
libdnf.conf.VectorString(['yes', 'no'])
))

Expand Down

0 comments on commit f9e0aa3

Please sign in to comment.