Skip to content
This repository was archived by the owner on Feb 1, 2023. It is now read-only.

Commit f33c363

Browse files
author
Matthias Koeppe
committed
sage_bootstrap.package.Package.tarball_pattern: Simplify code
1 parent c0a0329 commit f33c363

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/sage_bootstrap/package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def tarball_filename(self):
148148
"""
149149
pattern = self.tarball_pattern
150150
if pattern:
151-
return self.tarball_pattern.replace('VERSION', self.version)
151+
return pattern.replace('VERSION', self.version)
152152
else:
153153
return None
154154

0 commit comments

Comments
 (0)