Skip to content

Commit

Permalink
Make sure that the @ sign is translated
Browse files Browse the repository at this point in the history
Fixes issue fablab-wue#21
  • Loading branch information
MrSeccubus committed Aug 10, 2022
1 parent 3ffa643 commit 1eca30d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions txCode.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class BaudotMurrayCode:

# Baudot-Murray-Code valid ASCII table
#_valid_char = " ABCDEFGHIJKLMNOPQRSTUVWXYZ°3\n- '87\r@4%,:(5+)26019?]./=[#"
_valid_ASCII_convert_chars = " ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-+=:/()?.,'\n\r@°"
_valid_ASCII_convert_chars = " ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-+=:/()?.,'\n\r°"
_LUT_convert_chars = {
'Ä': 'AE',
'Ö': 'OE',
Expand All @@ -67,7 +67,7 @@ class BaudotMurrayCode:
'|': '(PIPE)',
'*': '(STAR)',
'#': '(HASH)',
'@': '(AT)',
'@': '(A)',
'"': "'",
';': ',.',
'!': '(./)',
Expand Down

0 comments on commit 1eca30d

Please sign in to comment.