Skip to content

Commit

Permalink
Merge pull request #192 from sepandhaghighi/minor_edit
Browse files Browse the repository at this point in the history
Minor edit
  • Loading branch information
sadrasabouri committed Jan 29, 2022
2 parents 03866fb + 4478415 commit 38bec53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Changed
- `__word2art` function modified
## [5.4] - 2021-12-22
### Added
- 10 new font
Expand Down
2 changes: 1 addition & 1 deletion art/art.py
Expand Up @@ -460,7 +460,7 @@ def __word2art(word, font, chr_ignore, letters, next_word, sep="\n"):
return ""
for i in range(len(split_list[0])):
temp = ""
for j, item in enumerate(split_list):
for item in split_list:
temp = temp + item[i]
result_list.append(temp)
result = (splitter).join(result_list)
Expand Down

0 comments on commit 38bec53

Please sign in to comment.