Description: Argument ttfsize must be and int
 Argument ttfsize for ImageFont must be an integer, so we parse
 it accordingly.
Author: Claudius Hubig <debian_1303@chubig.net>
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=702172
Forwarded: no
Last-Update: 2013-03-11

Index: wotsap/wotsap
===================================================================
--- wotsap.orig/wotsap	2013-03-11 16:10:53.126307855 +0100
+++ wotsap/wotsap	2013-03-11 16:11:56.535090483 +0100
@@ -1720,7 +1720,7 @@
         elif o in ("-T", "--ttffile"):
             ttffile = a
         elif o in ("-S", "--ttfsize"):
-            ttfsize = float(a)
+            ttfsize = int(a)
         elif o in ("-p", "--print"):
             prnt=1
         elif o in ("-D", "--print-debug"):
