Skip to content

Commit

Permalink
Remove redundant slash from a regex
Browse files Browse the repository at this point in the history
Fix #492
Follow-up after #473
  • Loading branch information
FrostyX authored and praiskup committed Feb 27, 2024
1 parent 6d09a79 commit e8de2e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tito/tagger/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def __init__(self, config=None, keep_version=False, offline=False, user_config=N
git_email = self.git_email
if git_email is None:
git_email = ''
self.changelog_regex = re.compile(r'\\*\s{0}\s{1}(\s<{2}>)?'.format(self.today,
self.changelog_regex = re.compile(r'\*\s{0}\s{1}(\s<{2}>)?'.format(self.today,
self.git_user, git_email))

self._no_auto_changelog = False
Expand Down

0 comments on commit e8de2e8

Please sign in to comment.