Fix: incorrect order of arguments in determining whether local branch exists.
diff --git a/gitflow-common b/gitflow-common
index 615b367..f0748ac 100644
--- a/gitflow-common
+++ b/gitflow-common
@@ -206,7 +206,7 @@
 	local num_matches
 
 	# first, check if there is a perfect match
-	if has "$(git_local_branches)" "$prefix$name"; then
+	if git_local_branch_exists "$prefix$name"; then
 		echo "$name"
 		return 0
 	fi