File tree Expand file tree Collapse file tree 3 files changed +28
-0
lines changed Expand file tree Collapse file tree 3 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ **Added: **
2+
3+ * <news item>
4+
5+ **Changed: **
6+
7+ * <news item>
8+
9+ **Deprecated: **
10+
11+ * <news item>
12+
13+ **Removed: **
14+
15+ * <news item>
16+
17+ **Fixed: **
18+
19+ * Added a wx import to fix module not found error.
20+
21+ **Security: **
22+
23+ * <news item>
Original file line number Diff line number Diff line change @@ -59,6 +59,9 @@ def getversioncfg():
5959 g = gitinfo ()
6060 except OSError :
6161 pass
62+ if len (g ['version' ]) == 0 :
63+ g ['version' ] = FALLBACK_VERSION
64+
6265 # finally, check and update the active version file
6366 cp = RawConfigParser ()
6467 cp .read (versioncfgfile )
Original file line number Diff line number Diff line change 1616"""Common functions for manipulating wx.grid.Grid.
1717"""
1818
19+ import wx
20+
1921
2022def getSelectionRows (grid ):
2123 """Indices of the rows that have any cell selected.
You can’t perform that action at this time.
0 commit comments