# HG changeset patch # User Drew Perttula # Date 1370506916 0 # Node ID f6c73fafffe94924dc991660f22dff7bbee5176f # Parent 7296573ee4c2894dc9f11bc9580520bd705f7767 legacy config readers also peek in the show's build/ dir Ignore-this: 3ddeedd14ef8d7d4da630c0d0da76135 diff -r 7296573ee4c2 -r f6c73fafffe9 light9/showconfig.py --- a/light9/showconfig.py Thu Jun 06 08:21:35 2013 +0000 +++ b/light9/showconfig.py Thu Jun 06 08:21:56 2013 +0000 @@ -13,7 +13,7 @@ global _config if _config is None: graph = Graph() - for f in FilePath(root()).globChildren("*.n3"): + for f in FilePath(root()).globChildren("*.n3") + FilePath(root()).globChildren("build/*.n3"): log.info("reading %s", f) graph.parse(location=f.path, format='n3') _config = graph