Commit 7edc0a47 authored by Sébastien Luttringer's avatar Sébastien Luttringer
Browse files

add seperator only when needed

parent c8b94322
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -34,8 +34,8 @@ class Command_list(TqlCommand):
        if len(self.args) == 0:
            self.args.append("id")
        # smart merge argument to have a tql
        tql = ""
        for arg in self.args:
        tql = self.args[0]
        for arg in self.args[1:]:
            if len(arg) == 0 or arg[0] in ("&", "|", "$", "^", "%"):
                tql += arg
            else: