diff options
| author | SpiritCroc <dev@spiritcroc.de> | 2021-01-19 16:58:59 +0100 |
|---|---|---|
| committer | SpiritCroc <dev@spiritcroc.de> | 2021-01-19 17:12:06 +0100 |
| commit | 601d2acc3272315f1b2356eff2a35cfa16d459d9 (patch) | |
| tree | 05e65e65ad5a274a756182cbe43ee8d40dbbfccc /setup.py | |
| parent | d3adedf3dfaede63d5b03b263c2cfaad291c4ffe (diff) | |
Rename import.py, since import is a keyword
from sticker.import import cmd
^
SyntaxError: invalid syntax
Fixes https://github.com/maunium/stickerpicker/issues/27.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,7 @@ setuptools.setup( "Programming Language :: Python :: 3.8", ], entry_points={"console_scripts": [ - "sticker-import=sticker.import:cmd", + "sticker-import=sticker.stickerimport:cmd", "sticker-pack=sticker.pack:cmd", ]}, ) |
