- 
                Notifications
    You must be signed in to change notification settings 
- Fork 230
Open
Labels
bugUnexpected problem or unintended behaviorUnexpected problem or unintended behavior
Description
Is axolotl.py python3 ? iteritems is python2 only.
        for option, default_value in script_options.iteritems():
            if not weechat.config_is_set_plugin(option):
                weechat.config_set_plugin(option, default_value)
My suggestion is:
        for option in script_options:
            if not weechat.config_is_set_plugin(option):
                weechat.config_set_plugin(option, script_options[option])
Metadata
Metadata
Assignees
Labels
bugUnexpected problem or unintended behaviorUnexpected problem or unintended behavior