From 2a1651cbc00b32dadd3f874df7a3c7b3b6fb6ad0 Mon Sep 17 00:00:00 2001 From: Joe R Date: Sat, 27 Jan 2024 20:12:42 -0500 Subject: [PATCH] Fixed error in HTML generation. --- MANIFEST.in | 2 +- html-src/gen-html.py | 1 - setup.py | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 0d5160bb0a..1c9f3dbb43 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -12,7 +12,7 @@ include pysollib/winsystems/*.py include pysollib/tk/*.py pysollib/tile/*.py pysollib/pysolgtk/*.py include pysollib/game/*.py include pysollib/games/*.py pysollib/games/special/*.py -include pysollib/games/ultra/*.py pysollib/games/mahjongg/*.py +include pysollib/games/mahjongg/*.py include data/tcl/*.tcl include data/pysol.desktop include data/pysolfc.glade diff --git a/html-src/gen-html.py b/html-src/gen-html.py index 4b24096072..f64b754de9 100755 --- a/html-src/gen-html.py +++ b/html-src/gen-html.py @@ -19,7 +19,6 @@ import pysollib.games # noqa: E402,F402,I100,I202 import pysollib.games.mahjongg # noqa: E402,F402 import pysollib.games.special # noqa: E402,F401,F402 -import pysollib.games.ultra # noqa: E402,F401,F402 try: os.mkdir('html') diff --git a/setup.py b/setup.py index 6f6f0ee1d7..2cd26a99a7 100644 --- a/setup.py +++ b/setup.py @@ -92,7 +92,6 @@ def get_data_files(source, destination): 'pysollib.game', 'pysollib.games', 'pysollib.games.special', - 'pysollib.games.ultra', 'pysollib.games.mahjongg'], 'data_files': data_files, }