tinyssg 0.0.3__tar.gz → 0.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tinyssg-0.0.3 → tinyssg-0.0.6}/PKG-INFO +1 -1
- {tinyssg-0.0.3 → tinyssg-0.0.6}/pyproject.toml +1 -1
- {tinyssg-0.0.3 → tinyssg-0.0.6}/tinyssg/__main__.py +2 -2
- {tinyssg-0.0.3 → tinyssg-0.0.6}/tinyssg.egg-info/PKG-INFO +1 -1
- {tinyssg-0.0.3 → tinyssg-0.0.6}/README.md +0 -0
- {tinyssg-0.0.3 → tinyssg-0.0.6}/setup.cfg +0 -0
- {tinyssg-0.0.3 → tinyssg-0.0.6}/tinyssg.egg-info/SOURCES.txt +0 -0
- {tinyssg-0.0.3 → tinyssg-0.0.6}/tinyssg.egg-info/dependency_links.txt +0 -0
- {tinyssg-0.0.3 → tinyssg-0.0.6}/tinyssg.egg-info/top_level.txt +0 -0
@@ -103,7 +103,7 @@ class TinySSGUtility:
|
|
103
103
|
|
104
104
|
print(message)
|
105
105
|
|
106
|
-
def error_print(
|
106
|
+
def error_print(cls, message: str) -> None:
|
107
107
|
"""
|
108
108
|
Output error message
|
109
109
|
"""
|
@@ -677,7 +677,7 @@ class TinySSG:
|
|
677
677
|
"""
|
678
678
|
Set the argument parser
|
679
679
|
"""
|
680
|
-
parser = argparse.ArgumentParser(prog='
|
680
|
+
parser = argparse.ArgumentParser(prog='python -m tinyssg', description='TinySSG Simple Static Site Generate Tool')
|
681
681
|
parser.add_argument('mode', choices=['dev', 'gen', 'cls', 'serv', 'servreload', 'config'], help='Select the mode to run (gen = Generate HTML files, dev = Run the debug server)')
|
682
682
|
parser.add_argument('--port', '-P', type=int, default=8000, help='Port number for the debug server')
|
683
683
|
parser.add_argument('--page', '-p', type=str, default='pages', help='Page file path')
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|