Skip to content
This repository was archived by the owner on Jan 4, 2024. It is now read-only.

Commit 1657ea7

Browse files
committed
Conf fix
1 parent ae8b03c commit 1657ea7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js_host/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ class Conf(conf.Conf):
3636
VERBOSITY = PROCESS_START
3737

3838
def configure(self, **kwargs):
39-
super(Conf, self).configure(**kwargs)
40-
4139
if self.ROOT_URL:
4240
if self.USE_MANAGER:
4341
raise ConfigError(
@@ -50,6 +48,8 @@ def configure(self, **kwargs):
5048
'The ROOT_URL must not end in a slash. It should be an address in the format http://127.0.0.1:8000'
5149
)
5250

51+
super(Conf, self).configure(**kwargs)
52+
5353
if self.CONNECT_ONCE_CONFIGURED:
5454
# Ensure that we raise connection issues during startup, rather than runtime
5555
from .host import host

0 commit comments

Comments
 (0)