Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
Stable Diffusion Webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Stable Diffusion Webui
Commits
a3db187e
Commit
a3db187e
authored
Jul 14, 2023
by
w-e-w
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
handles model hash cache.json error
parent
066d5edf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
modules/hashes.py
modules/hashes.py
+8
-3
No files found.
modules/hashes.py
View file @
a3db187e
...
@@ -5,7 +5,7 @@ import os.path
...
@@ -5,7 +5,7 @@ import os.path
import
filelock
import
filelock
from
modules
import
shared
from
modules
import
shared
from
modules.paths
import
data_path
from
modules.paths
import
data_path
,
script_path
cache_filename
=
os
.
path
.
join
(
data_path
,
"cache.json"
)
cache_filename
=
os
.
path
.
join
(
data_path
,
"cache.json"
)
...
@@ -26,8 +26,13 @@ def cache(subsection):
...
@@ -26,8 +26,13 @@ def cache(subsection):
if
not
os
.
path
.
isfile
(
cache_filename
):
if
not
os
.
path
.
isfile
(
cache_filename
):
cache_data
=
{}
cache_data
=
{}
else
:
else
:
with
open
(
cache_filename
,
"r"
,
encoding
=
"utf8"
)
as
file
:
try
:
cache_data
=
json
.
load
(
file
)
with
open
(
cache_filename
,
"r"
,
encoding
=
"utf8"
)
as
file
:
cache_data
=
json
.
load
(
file
)
except
Exception
:
os
.
replace
(
cache_filename
,
os
.
path
.
join
(
script_path
,
"tmp"
,
"cache.json"
))
print
(
'[ERROR] issue occurred while trying to read cache.json, move current cache to tmp/cache.json and create new cache'
)
cache_data
=
{}
s
=
cache_data
.
get
(
subsection
,
{})
s
=
cache_data
.
get
(
subsection
,
{})
cache_data
[
subsection
]
=
s
cache_data
[
subsection
]
=
s
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment