Merge remote branch 'mine/develop' into develop
diff --git a/gitflow-common b/gitflow-common
index e5ffc74..4255f99 100644
--- a/gitflow-common
+++ b/gitflow-common
@@ -148,7 +148,7 @@
 git_is_branch_merged_into() {
 	local subject=$1
 	local base=$2
-	local all_merges=$(git branch --no-color --contains $subject | sed 's/^[* ] //')
+	local all_merges="$(git branch --no-color --contains $subject | sed 's/^[* ] //')"
 	has $base $all_merges
 }