Code

oops, use correct templates source dir
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Sat, 19 Apr 2003 05:03:54 +0000 (05:03 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Sat, 19 Apr 2003 05:03:54 +0000 (05:03 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1666 57a73879-2fb5-44c3-a270-3262357dd7e2

setup.py

index bb1d8a3c7cd99eab0da95e587528b6ac13ad270b..bba05f434b8291ef9f15588bde82458d0efa0cfa 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: setup.py,v 1.48 2003-04-17 03:37:57 richard Exp $
+# $Id: setup.py,v 1.49 2003-04-19 05:03:54 richard Exp $
 
 from distutils.core import setup, Extension
 from distutils.util import get_platform
@@ -147,7 +147,7 @@ def main():
 
     # add the templates to the data files lists
     from roundup.admin import listTemplates
-    templates = [t['path'] for t in listTemplates('.').values()]
+    templates = [t['path'] for t in listTemplates('templates').values()]
     for tdir in templates:
         # scan for data files
         for idir in '. detectors html'.split():