From aa4626c5ea05aa34788615a6792d40b683a6f0e6 Mon Sep 17 00:00:00 2001 From: Alan Aguiar Date: Tue, 29 Jan 2013 20:14:55 +0000 Subject: fix file name in save_for_upload function of tawindow --- diff --git a/TurtleArt/tawindow.py b/TurtleArt/tawindow.py index bf241f7..4749ca2 100644 --- a/TurtleArt/tawindow.py +++ b/TurtleArt/tawindow.py @@ -3864,7 +3864,7 @@ may not terminate.', False) def save_for_upload(self, file_name): ''' Grab the current canvas and save it for upload ''' if not file_name.endswith(SUFFIX): - ta_name = file_name + SUFFIX[1] + ta_file = file_name + SUFFIX[1] image_file = file_name + '.png' else: ta_file = file_name -- cgit v0.9.1