Skip to content

Commit 54ca32b

Browse files
committedOct 24, 2023
Drop dash in name
Too much effort when importing
1 parent 0ad3eb6 commit 54ca32b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎app/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def main(filename=None, verbose=True):
6464
else:
6565
m3ufile = sys.argv[1]
6666
except IndexError:
67-
print("Usage: m3u-prsr <m3ufile>")
67+
print("Usage: m3uprsr <m3ufile>")
6868
sys.exit(1)
6969

7070
return parsem3u(m3ufile, verbose=verbose)

‎pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tool.poetry]
2-
name = "m3u-prsr"
3-
version = "0.1.33"
2+
name = "m3uprsr"
3+
version = "0.1.36"
44
description = ""
55
authors = [
6+
"pythoninthegrass <4097471+pythoninthegrass@users.noreply.github.com>",
67
"Dave A <dave@dvndrsn.com>",
7-
"pythoninthegrass <4097471+pythoninthegrass@users.noreply.github.com>"
88
]
99
license = "Unlicense"
1010
readme = "README.md"
@@ -30,7 +30,7 @@ ruff = "^0.1.1"
3030

3131
[tool.poetry.scripts]
3232
build = "app.pyinstaller:install"
33-
m3u-prsr = "app.main:main"
33+
m3uprsr = "app.main:main"
3434

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

0 commit comments

Comments
 (0)
Please sign in to comment.