Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Fix regex for new filename format
Browse files Browse the repository at this point in the history
  • Loading branch information
remyroy committed Apr 30, 2019
1 parent be2c0c2 commit 8a71654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cddagl/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -3152,7 +3152,7 @@ def lb_http_finished(self):

build_number = None
match = re.search(
'cataclysmdda-[01]\\.[A-F]-(?P<build>\d+)', name)
'cataclysmdda-[01]\\.[A-F](.*)-(?P<build>\d+)', name)
if match is not None:
build_number = match.group('build')

Expand Down

0 comments on commit 8a71654

Please sign in to comment.