From: Claudius Hubig <debian_1303@chubig.net>
Date: Mon, 28 May 2018 15:44:06 +0200
Subject: Argument ttfsize must be and int

Argument ttfsize for ImageFont must be an integer, so we parse
it accordingly.
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=702172
Forwarded: no
Last-Update: 2013-03-11
---
 wotsap | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wotsap b/wotsap
index a31e50a..e9f97dc 100755
--- a/wotsap
+++ b/wotsap
@@ -1720,7 +1720,7 @@ def wotsapmain(argv):
         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"):
