mirror of
https://github.com/frozenpandaman/s3s.git
synced 2026-04-30 20:17:26 -05:00
use pymmh3 instead of mmh3 module
This commit is contained in:
parent
50e6559518
commit
c6e96948cc
|
|
@ -1,5 +1,5 @@
|
||||||
beautifulsoup4
|
beautifulsoup4
|
||||||
mmh3
|
|
||||||
msgpack_python
|
msgpack_python
|
||||||
packaging
|
packaging
|
||||||
|
pymmh3
|
||||||
requests
|
requests
|
||||||
|
|
|
||||||
2
s3s.py
2
s3s.py
|
|
@ -1215,7 +1215,7 @@ def export_seed_json(skipprefetch=False):
|
||||||
'''Export a JSON file for use with Lean's seed checker at https://leanny.github.io/splat3seedchecker/.'''
|
'''Export a JSON file for use with Lean's seed checker at https://leanny.github.io/splat3seedchecker/.'''
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import mmh3
|
import pymmh3 as mmh3
|
||||||
except ModuleNotFoundError:
|
except ModuleNotFoundError:
|
||||||
print("This function requires a Python module you don't have installed. " \
|
print("This function requires a Python module you don't have installed. " \
|
||||||
"Please run " + '`\033[91m' + "pip install -r requirements.txt" + '\033[0m`' + " and try again.")
|
"Please run " + '`\033[91m' + "pip install -r requirements.txt" + '\033[0m`' + " and try again.")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user