Skip to content

Commit 97470a0

Browse files
authored
Merge pull request #1948 from achimgaedke/fix-1943
fix #1943
2 parents 833e8b1 + ca3aa45 commit 97470a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dash/dash.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,8 @@ def init_app(self, app=None, **kwargs):
443443
self.server = app
444444

445445
assets_blueprint_name = "{}{}".format(
446-
config.routes_pathname_prefix.replace("/", "_"), "dash_assets"
446+
config.routes_pathname_prefix.replace("/", "_").replace(".", "_"),
447+
"dash_assets",
447448
)
448449

449450
self.server.register_blueprint(

0 commit comments

Comments
 (0)