Skip to content

Commit

Permalink
Renamed completers and bumped CONF_VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
David Hirschfeld committed Apr 27, 2015
1 parent 88e4ac1 commit b40cc44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spyderlib/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ def is_ubuntu():
# 2. If you want to *remove* options that are no longer needed in our codebase,
# you need to do a MAJOR update in version, e.g. from 3.0.0 to 4.0.0
# 3. You don't need to touch this value if you're just adding a new option
CONF_VERSION = '16.1.0'
CONF_VERSION = '17.0.0'

# XXX: Previously we had load=(not DEV) here but DEV was set to *False*.
# Check if it *really* needs to be updated or not
Expand Down
2 changes: 1 addition & 1 deletion spyderlib/plugins/ipythonconsole.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def setup_page(self):
comp_group = QGroupBox(_("Completion Widget"))
comp_label = QLabel(_("Decide what type of completion to use"))
comp_label.setWordWrap(True)
completers = [("plain", 0), ("droplist", 1), ("ncurses", 2)]
completers = [("Graphical", 0), ("Terminal", 1), ("Plain", 2)]
comp_box = self.create_combobox(_("Completion:")+" ", completers,
'completion_widget', default=0)
comp_layout = QVBoxLayout()
Expand Down

0 comments on commit b40cc44

Please sign in to comment.