From c38646140c65adde55c4fcd406881266f4d8ba7d Mon Sep 17 00:00:00 2001
From: Dominic Kempf <dominic.r.kempf@gmail.com>
Date: Fri, 11 Sep 2015 10:58:26 +0200
Subject: [PATCH] Move the runtime ufl stuff in the ufl subpackage

---
 python/dune/perftool/compile.py                           | 2 +-
 python/dune/perftool/{runtime_ufl.py => ufl/execution.py} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename python/dune/perftool/{runtime_ufl.py => ufl/execution.py} (100%)

diff --git a/python/dune/perftool/compile.py b/python/dune/perftool/compile.py
index e3124f69..1306d7fc 100644
--- a/python/dune/perftool/compile.py
+++ b/python/dune/perftool/compile.py
@@ -10,7 +10,7 @@ def read_ufl(uflfile):
 
     uflcode = read_ufl_file(uflfile)
     namespace = {}
-    uflcode = "from dune.perftool.runtime_ufl import *\n" + uflcode
+    uflcode = "from dune.perftool.ufl.execution import *\n" + uflcode
     try:
         exec uflcode in namespace
     except:
diff --git a/python/dune/perftool/runtime_ufl.py b/python/dune/perftool/ufl/execution.py
similarity index 100%
rename from python/dune/perftool/runtime_ufl.py
rename to python/dune/perftool/ufl/execution.py
-- 
GitLab