Skip to content

Commit

Permalink
Merge pull request buildbot#7817 from mokibit/www-minor-fix
Browse files Browse the repository at this point in the history
www: Minor fix for WWWService.refresh_base_plugin_name()
  • Loading branch information
p12tic authored Jul 15, 2024
2 parents 906f247 + 3512278 commit 1fac901
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions master/buildbot/www/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,12 +274,10 @@ def getPortnum(self):
def refresh_base_plugin_name(self, new_config):
if 'base_react' in new_config.www.get('plugins', {}):
config.error(
"base_react is no longer supported. Remove buildbot-www-react and install"
"base_react is no longer supported. Remove buildbot-www-react and install "
"buildbot-www package"
)
self.base_plugin_name = 'base'
else:
self.base_plugin_name = 'base'
self.base_plugin_name = 'base'

def configPlugins(self, root, new_config):
plugin_root = root
Expand Down

0 comments on commit 1fac901

Please sign in to comment.