Pārlūkot izejas kodu

Stress: Templates did not support lower-case settings

Ask Solem 9 gadi atpakaļ
vecāks
revīzija
fff558072d
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      funtests/stress/stress/templates.py

+ 1 - 1
funtests/stress/stress/templates.py

@@ -40,7 +40,7 @@ def mixin_template(template, conf):
     cls = symbol_by_name(templates[template])
     conf.update(dict(
         (k, v) for k, v in items(vars(cls))
-        if k.isupper() and not k.startswith('_')
+        if not k.startswith('_')
     ))