#128 settings.py: use lists instead of tuples
Merged 6 years ago by jskladan. Opened 6 years ago by kparal.

file modified
+1 -3
@@ -31,7 +31,7 @@ 

      }

  

  # Extend the list of allowed outcomes.

- ADDITIONAL_RESULT_OUTCOMES = ()

+ ADDITIONAL_RESULT_OUTCOMES = []

  

  # Fedmenu configuration

  FEDMENU_URL = 'https://apps.fedoraproject.org/fedmenu'
@@ -83,5 +83,3 @@ 

  

  # Publish Taskotron-compatible fedmsgs on the 'taskotron' topic

  MESSAGE_BUS_PUBLISH_TASKOTRON = False

- 

- 

Admins are not python programmers and defining a tuple with a single
value is tricky. Let's save them some troubles by using a list (we use
lists in other config options as well), which has less pitfalls.

whatevs :) THX though!

Pull-Request has been merged by jskladan

6 years ago
Metadata