diff options
| author | Florian Fischer <florian.fischer@muhq.space> | 2021-11-20 16:40:03 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fischer@muhq.space> | 2021-11-20 16:40:03 +0100 |
| commit | d92718a7fffd863069c7915a95fb3fd77b32974c (patch) | |
| tree | 65a7ad7bb833f0cb53c6c45173d8a4475c00c846 /scripts | |
| parent | 0aea00789587036087408e7062a753966f8b360b (diff) | |
| download | muhqs-game-d92718a7fffd863069c7915a95fb3fd77b32974c.tar.gz muhqs-game-d92718a7fffd863069c7915a95fb3fd77b32974c.zip | |
generate_card.py: prefix full actions with '\faRedo:'
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/generate_card.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/generate_card.py b/scripts/generate_card.py index 8e8f0aa6..a92f2352 100755 --- a/scripts/generate_card.py +++ b/scripts/generate_card.py @@ -109,7 +109,7 @@ def get_latex_field(card: MutableMapping, return latex_value, True else: if not isinstance(normal_value, list): - return normal_value, False + return f'{fmt_prefix}{normal_value}', False # Transform a list of values into a single string. # normal fields are joined using '\\ ' |
