From c3bc6237c8dc5cb0309f393c66ce63ca2c39e0d6 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Thu, 17 May 2012 21:46:17 -0500 Subject: [PATCH] Remove a lurking hedge dependency. --- pymbolic/primitives.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymbolic/primitives.py b/pymbolic/primitives.py index 7ce00e2..91e63a5 100644 --- a/pymbolic/primitives.py +++ b/pymbolic/primitives.py @@ -940,7 +940,7 @@ def make_sym_vector(name, components): if isinstance(components, int): components = range(components) - from hedge.tools import join_fields + from pytools.obj_array import join_fields vfld = Variable(name) return join_fields(*[vfld[i] for i in components]) -- GitLab