Skip to content

Commit

Permalink
Merge pull request #339 from HebaruSan/fix/indexer-branch-with-spaces
Browse files Browse the repository at this point in the history
Remove spaces from staging branch names
  • Loading branch information
HebaruSan authored Sep 8, 2024
2 parents df5bcf6 + 9f2275c commit e985488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netkan/netkan/indexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def mod_version(self) -> str:

@property
def staging_branch_name(self) -> str:
return f'add/{self.mod_version}'
return f'add/{self.mod_version}'.replace(' ', '')

def mod_file_md5(self) -> str:
with open(self.mod_file, mode='rb') as file:
Expand Down

0 comments on commit e985488

Please sign in to comment.