Skip to content

Commit 09d6a86

Browse files
committed
carry over rogue patch from old box
1 parent f74f824 commit 09d6a86

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

codespeed/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
DEF_ENVIRONMENT = None #Name of the environment which should be selected as default
88

9-
DEF_BRANCH = "default" # Defines the default branch to be used.
9+
DEF_BRANCH = "master" # Defines the default branch to be used.
1010
# In git projects, this branch is usually be calles
1111
# "master"
1212

codespeed/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ def timeline(request):
394394
branch_list.sort()
395395

396396
defaultbranch = ""
397-
if "default" in branch_list:
397+
if settings.DEF_BRANCH in branch_list:
398398
defaultbranch = settings.DEF_BRANCH
399399
if data.get('bran') in branch_list:
400400
defaultbranch = data.get('bran')

0 commit comments

Comments
 (0)