diff --git a/CHANGELOG.md b/CHANGELOG.md index b38bda7..b355beb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +### Fixed +- Fixed ditto marks (") appearing in the ae7q call command. ## [v2.1.0] - 2020-01-04 diff --git a/exts/ae7q.py b/exts/ae7q.py index 43a6981..03b7d42 100644 --- a/exts/ae7q.py +++ b/exts/ae7q.py @@ -86,7 +86,7 @@ class AE7QCog(commands.Cog): row_cells.append(row_cells[-1]) for i, cell in enumerate(row_cells): if cell == '"': - cell = table_contents[-1][i] + row_cells[i] = table_contents[-1][i] if len(row_cells) > 1: table_contents += [row_cells]