Skip to content

Commit 31f66a8

Browse files
committed
minor
1 parent d0349dc commit 31f66a8

4 files changed

Lines changed: 13 additions & 2 deletions

File tree

CHANGES

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
CHANGES
33
=======
44

5+
------
6+
1.2
7+
------
8+
9+
* moved modules to proper folder for setup.py
10+
* fixed outstanding bugs from google code
11+
* improved cell padding
12+
513
------
614
1.1.2
715
------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
name = 'tkintertable',
77
version = '1.2',
88
description = 'Extendable table class for Tkinter',
9-
url='http://code.google.com/p/tkintertable/',
9+
url='https://github.com/dmnfarrell/tkintertable',
1010
license='GPL v3',
1111
author = 'Damien Farrell',
1212
author_email = 'farrell.damien[at]gmail.com',

tkintertable/TablesApp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ def do_find_again(self, event=None):
415415
return
416416

417417
def plot(self, event=None):
418-
self.currenttable.plot_Selected()
418+
self.currenttable.plotSelected()
419419
return
420420

421421
def plotSetup(self, event=None):

tkintertable/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,7 @@
2121
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2222
"""
2323

24+
from Tables import *
25+
from TableModels import *
26+
2427
__version__ = '1.2'

0 commit comments

Comments
 (0)