2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-14 11:05:41 +00:00

Update src/backend/InvenTree/plugin/installer.py

Co-authored-by: Matthias Mair <code@mjmair.com>
This commit is contained in:
Oliver
2024-11-20 09:06:12 +11:00
committed by GitHub
parent 2fa832f1f3
commit ff7f8d8027

View File

@ -113,7 +113,7 @@ def plugins_file_hash():
return None
with pf.open('rb') as f:
return hashlib.md5(f.read()).hexdigest()
return hashlib.sha256(f.read()).hexdigest()
def install_plugins_file():