File tree 3 files changed +28
-0
lines changed
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():
59
59
g = gitinfo ()
60
60
except OSError :
61
61
pass
62
+ if len (g ['version' ]) == 0 :
63
+ g ['version' ] = FALLBACK_VERSION
64
+
62
65
# finally, check and update the active version file
63
66
cp = RawConfigParser ()
64
67
cp .read (versioncfgfile )
Original file line number Diff line number Diff line change 16
16
"""Common functions for manipulating wx.grid.Grid.
17
17
"""
18
18
19
+ import wx
20
+
19
21
20
22
def getSelectionRows (grid ):
21
23
"""Indices of the rows that have any cell selected.
You can’t perform that action at this time.
0 commit comments