Skip to content

Commit

Permalink
syntax error bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Apr 18, 2018
1 parent 86e8ea4 commit 309d7ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kubespawner/spawner.py
Original file line number Diff line number Diff line change
Expand Up @@ -914,9 +914,9 @@ def _build_common_labels(self, extra_labels):
labels.update(extra_labels)
labels.update({
'app': os.getenv('LABEL_APP', 'jupyterhub'),
'release': os.getenv('LABEL_RELEASE', 'unknown')
'chart': os.getenv('LABEL_CHART', 'unknown')
'heritage': os.getenv('LABEL_HERITAGE', 'jupyterhub')
'release': os.getenv('LABEL_RELEASE', 'unknown'),
'chart': os.getenv('LABEL_CHART', 'unknown'),
'heritage': os.getenv('LABEL_HERITAGE', 'jupyterhub'),
})
return labels

Expand Down

0 comments on commit 309d7ef

Please sign in to comment.