Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/turtleart.py
diff options
context:
space:
mode:
authorWalter Bender <walter@sugarlabs.org>2010-08-03 21:04:24 (GMT)
committer Walter Bender <walter@sugarlabs.org>2010-08-03 21:04:24 (GMT)
commitd6a2a422b8e2de38eff20888463325f0800b19f8 (patch)
tree63da225b3de7f5235f06ca6099e90a82b2a4a0ca /turtleart.py
parent6f6694a42b104241c93c5aefb6e152f0e0701261 (diff)
fixed table error
Diffstat (limited to 'turtleart.py')
-rwxr-xr-xturtleart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/turtleart.py b/turtleart.py
index 57c34df..6b2dcb4 100755
--- a/turtleart.py
+++ b/turtleart.py
@@ -477,7 +477,7 @@ class TurtleMain():
self.pop_up = gtk.Window()
self.pop_up.set_default_size(600, 400)
self.pop_up.connect('delete_event', self._stop_uploading)
- table = gtk.Table(False, 1, 8)
+ table = gtk.Table(1, 8, False)
self.pop_up.add(table)
login_label = gtk.Label(_('You must have an account at \
http://turtleartsite.sugarlabs.org to upload your project.'))