Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/timelinelib
diff options
context:
space:
mode:
authorAlan Aguiar <alanjas@hotmail.com>2012-01-25 08:56:37 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2012-01-25 08:56:37 (GMT)
commit6c23f2d8dea1791d70d147aa6c95e986d46b004d (patch)
treef8eb3c0fa146828fee2006d3d081b0af7a222a59 /timelinelib
parentf17446aaafbb862dc419ef8762d57b2cd2c3bc49 (diff)
fix error of typos
Diffstat (limited to 'timelinelib')
-rw-r--r--timelinelib/wxgui/dialogs/eventeditor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/timelinelib/wxgui/dialogs/eventeditor.py b/timelinelib/wxgui/dialogs/eventeditor.py
index c83f344..bdafb06 100644
--- a/timelinelib/wxgui/dialogs/eventeditor.py
+++ b/timelinelib/wxgui/dialogs/eventeditor.py
@@ -410,7 +410,7 @@ class IconEditor(wx.Panel):
self.MAX_SIZE = (128, 128)
# Controls
self.img_icon = wx.StaticBitmap(self, size=self.MAX_SIZE)
- label = _("Images will be scaled to fit inside a ") + self.MAX_SIZE[0] + ' ' + self.MAX_SIZE[1] + _(" box.")
+ label = _("Images will be scaled to fit inside a ") + str(self.MAX_SIZE[0]) + ' ' + str(self.MAX_SIZE[1]) + _(" box.")
description = wx.StaticText(self, label)
btn_select = wx.Button(self, wx.ID_OPEN)
btn_clear = wx.Button(self, wx.ID_CLEAR)