From 38fb0894229bf51b86aeeef3d7322a72a9b3ac4f Mon Sep 17 00:00:00 2001 From: meejah Date: Thu, 8 Aug 2024 16:58:53 -0600 Subject: [PATCH] Do what 'typing' says I guess? --- src/allmydata/storage/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/storage/server.py b/src/allmydata/storage/server.py index e734f9d74..5162faf0d 100644 --- a/src/allmydata/storage/server.py +++ b/src/allmydata/storage/server.py @@ -953,5 +953,5 @@ def get_corruption_report_path( # windows can't handle colons in the filename return os.path.join( base_dir, - ("%s--%s-%d" % (now, str(si_s, "utf-8"), shnum)).replace(":","") + ("%s--%s-%d" % (now, str(si_s), shnum)).replace(":","") )