Skip to content

Commit 0aba97f

Browse files
committed
Adjust to new location for templates in source tree.
1 parent 56de768 commit 0aba97f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/db_test_base.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,12 @@ def setupTracker(dirname, backend="anydbm"):
5555
except OSError, error:
5656
if error.errno not in (errno.ENOENT, errno.ESRCH): raise
5757
# create the instance
58-
init.install(dirname, os.path.join(os.path.dirname(__file__), '..',
59-
'templates/classic'))
58+
init.install(dirname, os.path.join(os.path.dirname(__file__),
59+
'..',
60+
'share',
61+
'roundup',
62+
'templates',
63+
'classic'))
6064
init.write_select_db(dirname, backend)
6165
config.save(os.path.join(dirname, 'config.ini'))
6266
tracker = instance.open(dirname)

0 commit comments

Comments
 (0)