Skip to content

Commit

Permalink
little fix in readme and make program more verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
SkwalExe committed Sep 7, 2023
1 parent 35fd99a commit ffc8264
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ I had the idea to create this project after seeing the logos made by [adi1090x](
First, clone this repository

```bash
git clone https://github.com/SkwalExe/octo-logohttps://github.com/SkwalExe/octo-logo
git clone https://github.com/SkwalExe/octo-logo
cd octo-logo
```

Expand Down Expand Up @@ -77,4 +77,4 @@ python3 src/main.py

# Development

Please, open an issue if you have any suggestion or if you found a bug. I will try to fix it as soon as possible. If you want to contribute, open an empty pull request and explain what you want to do, wait for me to approve it and then you can start working on it.
Please, open an issue if you have any suggestion or if you found a bug. I will try to fix it as soon as possible. If you want to contribute, open an empty pull request and explain what you want to do, wait for me to approve it and then you can start working on it.
4 changes: 3 additions & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ def main():
image = selected_style.get_image(answers["name"])

# Save result or show if debug is enabled
image.show() if DEBUG else image.save(f'output/{answers["name"]}_{int(time())}.png')
save_to = f'output/{answers["name"]}_{int(time())}.png'
image.show() if DEBUG else image.save(save_to)
print(f"Logo saved to {save_to}")

if __name__ == "__main__":
main()

0 comments on commit ffc8264

Please sign in to comment.