diff options
author | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-11-02 00:04:38 +0100 |
---|---|---|
committer | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-11-02 00:04:38 +0100 |
commit | ffb79be55a2443ed98ba70109f4f8156e620b8d7 (patch) | |
tree | 4436106f34073fb900ac1fedd6ccf050d22c43b0 /swiftstory | |
parent | 1f18b5053c44d418e3059a789cb9bdf40f3f9b10 (diff) |
Fix typo s/colletion/collection
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
Diffstat (limited to 'swiftstory')
-rw-r--r-- | swiftstory/Game.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swiftstory/Game.py b/swiftstory/Game.py index 0057bc7..ea0582a 100644 --- a/swiftstory/Game.py +++ b/swiftstory/Game.py @@ -108,7 +108,7 @@ class Game: def try_collect_cards(self, player): if self.state is not self.WAITING_COLLECTION: - raise WrongAction('Do you think it\'s the moment for colletion !?') + raise WrongAction("Do you think it's the moment for collection !?") if self.judge is not player: raise WrongAction('You\'re not the judge, you fool!') |