Skip to content

Commit

Permalink
Drop dash in name
Browse files Browse the repository at this point in the history
Too much effort when importing
  • Loading branch information
pythoninthegrass committed Oct 24, 2023
1 parent 0ad3eb6 commit 54ca32b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def main(filename=None, verbose=True):
else:
m3ufile = sys.argv[1]
except IndexError:
print("Usage: m3u-prsr <m3ufile>")
print("Usage: m3uprsr <m3ufile>")
sys.exit(1)

return parsem3u(m3ufile, verbose=verbose)
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[tool.poetry]
name = "m3u-prsr"
version = "0.1.33"
name = "m3uprsr"
version = "0.1.36"
description = ""
authors = [
"pythoninthegrass <[email protected]>",
"Dave A <[email protected]>",
"pythoninthegrass <[email protected]>"
]
license = "Unlicense"
readme = "README.md"
Expand All @@ -30,7 +30,7 @@ ruff = "^0.1.1"

[tool.poetry.scripts]
build = "app.pyinstaller:install"
m3u-prsr = "app.main:main"
m3uprsr = "app.main:main"

[tool.ruff]
# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default.
Expand Down

0 comments on commit 54ca32b

Please sign in to comment.