Skip to content

Commit 0ca002a

Browse files
author
sreeder
committed
only connect to an odm2 database
1 parent 7560412 commit 0ca002a

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

odmtools/view/clsDBConfig.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,9 @@ def __init__(self, parent):
172172
self.stVersion.Wrap(-1)
173173
connectionSizer.Add(self.stVersion, 0, wx.ALL | wx.ALIGN_RIGHT | wx.EXPAND, 5)
174174

175-
version_choices = [ u"1.1", u"2.0"]
176-
self.cbVersion = wx.ComboBox(self, wx.ID_ANY, u"1.1", wx.DefaultPosition, wx.DefaultSize,
175+
# version_choices = [ u"1.1", u"2.0"]
176+
version_choices = [u"2.0"]
177+
self.cbVersion = wx.ComboBox(self, wx.ID_ANY, u"2.0", wx.DefaultPosition, wx.DefaultSize,
177178
version_choices, wx.CB_READONLY )#| wx.CB_SORT)
178179
self.cbVersion.SetSelection(0)
179180
connectionSizer.Add(self.cbVersion, 1, wx.ALL | wx.EXPAND, 5)

0 commit comments

Comments
 (0)