Fix: quote arg to typeset
diff --git a/git-flow b/git-flow
index 303e8a7..ec111e1 100755
--- a/git-flow
+++ b/git-flow
@@ -87,7 +87,7 @@
 	if [ "$1" != "" ] && ! echo "$1" | grep -q "^-"; then
 		SUBACTION="$1"; shift
 	fi
-	if ! typeset -f cmd_$SUBACTION 2>&1 >/dev/null; then
+	if ! typeset -f "cmd_$SUBACTION" 2>&1 >/dev/null; then
 		warn "Unknown subcommand: '$1'"
 		usage
 		exit 1