Skip to content

Commit

Permalink
Repaired fixed syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mottosso committed Jun 30, 2015
1 parent cdc74ec commit 80061bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def in_(ctx, topics, yes, as_, enter):
if topic_syntax & lib.POSITIONAL and not template_syntax & lib.POSITIONAL:
topics = ["/".join(topics)]
if topic_syntax & lib.FIXED and not template_syntax & lib.FIXED:
topics[:] = " ".join(topics[0].split("/"))
topics[:] = topics[0].split("/")

try:
key = be.get("templates", {}).get("key") or "{1}"
Expand Down

0 comments on commit 80061bd

Please sign in to comment.