summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AUTHORS1
-rw-r--r--share/extensions/lorem_ipsum.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index 7ff7495fd..90c96ac0f 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -82,3 +82,4 @@ Michael Wybrow
Daniel Yacob
David Yip
Masatake Yamato
+Jos Hirth
diff --git a/share/extensions/lorem_ipsum.py b/share/extensions/lorem_ipsum.py
index 3f39caa92..e71b2adcc 100644
--- a/share/extensions/lorem_ipsum.py
+++ b/share/extensions/lorem_ipsum.py
@@ -191,7 +191,7 @@ class MyEffect(inkex.Effect):
def makePara(self):
_min=max(1,self.options.sentencecount-self.options.fluctuation)
- _max=max(2,self.options.sentencecount+2*self.options.fluctuation)
+ _max=max(2,self.options.sentencecount+self.options.fluctuation)
scount=random.randint(_min,_max)
text=''
for i in range(scount):