aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2018-11-17 12:23:06 +0000
committerGravatar jesopo2018-11-17 12:23:06 +0000
commit692c79c745fd600f7d4abb7a6b2e95bb69ec7e09 (patch)
tree9306b5f70d46f5b710ccdf763f44984abf64cbf8 /modules
parent'die_sides' 'die_count' -> 'sides_n' 'count_n' (diff)
signature
'reults' -> 'results'
Diffstat (limited to 'modules')
-rw-r--r--modules/dice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dice.py b/modules/dice.py
index 51752aa9..69485b6d 100644
--- a/modules/dice.py
+++ b/modules/dice.py
@@ -18,7 +18,7 @@ class Module(ModuleManager.BaseModule):
count_n = min(5, int(count))
sides_n = min(20, int(sides))
- reults = random.choices(range(1, sides_n), k=count_n)
+ results = random.choices(range(1, sides_n), k=count_n)
total_n = sum(results)
total = ""