From 62d93103f4c154e9c673172af6034ea9a3bf6dac Mon Sep 17 00:00:00 2001 From: Vivien Maisonneuve Date: Thu, 19 Jun 2014 10:16:56 +0200 Subject: [PATCH] Fix symbols() function --- pypol/linear.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pypol/linear.py b/pypol/linear.py index 749f7c3..845fac3 100644 --- a/pypol/linear.py +++ b/pypol/linear.py @@ -355,7 +355,7 @@ class Symbol(Expression): def symbols(names): if isinstance(names, str): names = names.replace(',', ' ').split() - return (symbol(name) for name in names) + return (Symbol(name) for name in names) @_polymorphic_operator -- 2.20.1