Skip to content

Commit

Permalink
Strip whitespace to pacify test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jablko committed Sep 12, 2023
1 parent c3025ad commit 591a292
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion readme.org
Original file line number Diff line number Diff line change
Expand Up @@ -1313,7 +1313,7 @@ for layer, name in layers_table:
results += 'MIRYOKU_X(' + ( stripped + ', ').ljust(width)
results += '"' + name + '"'
results += ') \\\n'
results = results.rstrip('\\\n')
results = results.rstrip(' \\\n')
return results
#+END_SRC

Expand Down Expand Up @@ -1347,6 +1347,7 @@ for layer, name in layers_table:
elif target == 'svg':
results += '"' + name + '"' + '\n'
i += 1
results = results.rstrip('\n')
return results
#+END_SRC

Expand Down

0 comments on commit 591a292

Please sign in to comment.