Unverified Commit 0f00e553 authored by Jörg Thalheim's avatar Jörg Thalheim Committed by GitHub
Browse files

nixos/buildbot: fix usage of escapeStr (#342276)

parents 40eeb796 53eac0b4
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -16,10 +16,10 @@ let
    c = BuildmasterConfig = dict(
     workers       = [${lib.concatStringsSep "," cfg.workers}],
     protocols     = { 'pb': {'port': ${toString cfg.pbPort} } },
     title         = '${lib.escapeStr cfg.title}',
     titleURL      = '${lib.escapeStr cfg.titleUrl}',
     buildbotURL   = '${lib.escapeStr cfg.buildbotUrl}',
     db            = dict(db_url='${lib.escapeStr cfg.dbUrl}'),
     title         = '${escapeStr cfg.title}',
     titleURL      = '${escapeStr cfg.titleUrl}',
     buildbotURL   = '${escapeStr cfg.buildbotUrl}',
     db            = dict(db_url='${escapeStr cfg.dbUrl}'),
     www           = dict(port=${toString cfg.port}),
     change_source = [ ${lib.concatStringsSep "," cfg.changeSource} ],
     schedulers    = [ ${lib.concatStringsSep "," cfg.schedulers} ],