From 601d2acc3272315f1b2356eff2a35cfa16d459d9 Mon Sep 17 00:00:00 2001 From: SpiritCroc Date: Tue, 19 Jan 2021 16:58:59 +0100 Subject: [PATCH] Rename import.py, since import is a keyword from sticker.import import cmd ^ SyntaxError: invalid syntax Fixes https://github.com/maunium/stickerpicker/issues/27. --- setup.py | 2 +- sticker/{import.py => stickerimport.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename sticker/{import.py => stickerimport.py} (100%) diff --git a/setup.py b/setup.py index 524eaa7..8d78438 100644 --- a/setup.py +++ b/setup.py @@ -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", ]}, ) diff --git a/sticker/import.py b/sticker/stickerimport.py similarity index 100% rename from sticker/import.py rename to sticker/stickerimport.py