# HG changeset patch # User Bjoern Ricks # Date 1314965217 0 # Node ID 19d10022b2de25e37efd2a9e33c9f6803771fb3c # Parent 49e63875e041480a37c6bc201158665ef21b212a Lists must not be converted to lists diff -r 49e63875e041 -r 19d10022b2de treepkg/cmdexpand.py --- a/treepkg/cmdexpand.py Fri Sep 02 11:55:04 2011 +0000 +++ b/treepkg/cmdexpand.py Fri Sep 02 12:06:57 2011 +0000 @@ -106,7 +106,7 @@ if match: key = match.group("named") if key: - words[index:index + 1] = (str(item).split(" ") for item in kw[key]) + words[index:index + 1] = (str(item) for item in kw[key]) else: assert match.group("invalid") != None raise ValueError("In %r the characters after the '@'"