Skip to content

Commit

Permalink
Merge pull request #25 from ssciwr/underscores-in-python-modules
Browse files Browse the repository at this point in the history
Replaces dashes with underscores to generate package names
  • Loading branch information
dokempf authored Jun 23, 2023
2 parents 73cad62 + 1b1cdbd commit cd2a7d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion local_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __init__(self, environment):
#

def _modname(data):
return data["project_slug"].replace("-", "")
return data["project_slug"].replace("-", "_")


def _is_github(data):
Expand Down

0 comments on commit cd2a7d6

Please sign in to comment.