mirror of
https://github.com/miaowware/qrm2.git
synced 2024-11-10 10:23:32 -05:00
parent
c7d0a85464
commit
9552a7f6d4
@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
|
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
### Fixed
|
||||||
|
- Fixed ditto marks (") appearing in the ae7q call command.
|
||||||
|
|
||||||
|
|
||||||
## [v2.1.0] - 2020-01-04
|
## [v2.1.0] - 2020-01-04
|
||||||
|
@ -86,7 +86,7 @@ class AE7QCog(commands.Cog):
|
|||||||
row_cells.append(row_cells[-1])
|
row_cells.append(row_cells[-1])
|
||||||
for i, cell in enumerate(row_cells):
|
for i, cell in enumerate(row_cells):
|
||||||
if cell == '"':
|
if cell == '"':
|
||||||
cell = table_contents[-1][i]
|
row_cells[i] = table_contents[-1][i]
|
||||||
if len(row_cells) > 1:
|
if len(row_cells) > 1:
|
||||||
table_contents += [row_cells]
|
table_contents += [row_cells]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user