Rename filenames in boilerplate

This commit is contained in:
Florent 2014-09-26 11:09:35 +02:00
commit 0b58c9a26b
3 changed files with 2 additions and 2 deletions

View file

@ -193,7 +193,7 @@ class CapRecipe(Recipe):
self.methods_code = self.methods_code(cap)
self.write('__init__.py', self.template('init'))
self.write('module.py', self.template('cap_backend'))
self.write('module.py', self.template('cap_module'))
self.write('browser.py', self.template('base_browser'))
self.write('pages.py', self.template('base_pages'))
self.write('test.py', self.template('base_test'))
@ -204,7 +204,7 @@ class ComicRecipe(Recipe):
def generate(self):
self.write('__init__.py', self.template('init'))
self.write('module.py', self.template('comic_backend'))
self.write('module.py', self.template('comic_module'))
class ComicTestRecipe(Recipe):