Slightly improve console trace readability

- Shorten cache busting string to take up less room in the browser console.
This commit is contained in:
awsr
2026-04-23 16:25:11 -07:00
parent 6bb003126f
commit bea726b5b3
+1 -1
View File
@@ -12,7 +12,7 @@ def webpath(fn):
else:
uri = fn
uri = uri.replace('\\', '/')
uri = f'file={uri}?{os.path.getmtime(fn)}'
uri = f'file={uri}?{int(os.path.getmtime(fn))}'
return uri