diff options
author | Jeffrey Armstrong <jeff@approximatrix.com> | 2024-11-20 20:36:20 -0500 |
---|---|---|
committer | Jeffrey Armstrong <jeff@approximatrix.com> | 2024-11-20 20:36:20 -0500 |
commit | 3b2001b6dc43724e73cba3160cb05c0302b09303 (patch) | |
tree | 4743609be36f68c174566177652e6bb4abc51059 | |
parent | 9493cf35a2986c6d9f043aa7eac3afe4d36e95a7 (diff) | |
download | GWFetch-3b2001b6dc43724e73cba3160cb05c0302b09303.tar.gz GWFetch-3b2001b6dc43724e73cba3160cb05c0302b09303.zip |
Fixed parsing the Pascal inline data to remove the final parentheses
-rw-r--r-- | support/in2data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/in2data.py b/support/in2data.py index 5f497a9..fa3b3e6 100644 --- a/support/in2data.py +++ b/support/in2data.py @@ -16,7 +16,7 @@ def pascal_to_basic(line): else: ret = ret + ", " - cnum = c[1:] + cnum = c[1:3] ret = ret + "&H" + cnum bytes = bytes + 1 |