Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 6346d48

Browse files
committed
rename template files to be clear they are templates
1 parent f18d3d5 commit 6346d48

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

runestone/__main__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
def init():
1212
template_base_dir = resource_filename('runestone', 'common/project_template')
13-
config_stuff = resource_string('runestone','common/project_template/conf.py')
14-
paver_stuff = resource_string('runestone','common/project_template/pavement.py')
13+
config_stuff = resource_string('runestone','common/project_template/conf.tmpl')
14+
paver_stuff = resource_string('runestone','common/project_template/pavement.tmpl')
1515
conf_dict = {}
1616
print("This will create a new Runestone project in your current directory.")
1717
click.confirm("Do you want to proceed? ", abort=True, default=True)
@@ -75,7 +75,7 @@ def main(args=None):
7575
if not args:
7676
args = sys.argv[1:]
7777
foo_config = resource_filename('runestone', 'common')
78-
# foo_string = resource_string('runestone', 'project/template/conf.py')
78+
# foo_string = resource_string('runestone', 'project/template/conf.tmpl')
7979
print(findProjectRoot())
8080
if args[0] == "init":
8181
init()

0 commit comments

Comments
 (0)