Skip to content

Commit

Permalink
Fix bug with scaffolding extensions. (#534)
Browse files Browse the repository at this point in the history
  • Loading branch information
swainn authored Mar 20, 2020
1 parent fbf5bf0 commit 2b26bec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ resource_files += find_resource_files('tethysext/' + ext_package + '/public', 't
setup(
name=release_package,
version='0.0.1',
description='{{description|default:''}}',
description='{{description|default('')}}',
long_description='',
keywords='',
author='{{author|default:''}}',
author_email='{{author_email|default:''}}',
author='{{author|default('')}}',
author_email='{{author_email|default('')}}',
url='',
license='{{license_name|default:''}}',
license='{{license_name|default('')}}',
packages=find_namespace_packages(),
package_data={'': resource_files},
include_package_data=True,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ class {{class_name}}(TethysExtensionBase):
name = '{{proper_name}}'
package = '{{project}}'
root_url = '{{project_url}}'
description = '{{description|default:"Place a brief description of your extension here."}}'
description = '{{description|default("Place a brief description of your extension here.")}}'

0 comments on commit 2b26bec

Please sign in to comment.