Skip to content

Commit d6fcf57

Browse files
committed
Fix spacing between labels
1 parent 6454d8a commit d6fcf57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scrumdo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def __init__(self, story_json):
4444
self.permalink = "https://app.scrumdo.com/projects/story_permalink/{}"\
4545
.format(story_json["id"])
4646
self.tags = get_strings(story_json["tags"])
47-
self.labels = "".join(get_strings(l["name"]) for l
47+
self.labels = "\n\t".join(get_strings(l["name"]) for l
4848
in story_json["labels"])
4949

5050
def print_story(self):

0 commit comments

Comments
 (0)