Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmetzman committed Aug 21, 2024
1 parent b43f4d6 commit b29b5dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/local/butler/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
import tempfile
import time

from clusterfuzz._internal.base import utils
from local.butler import appengine
from local.butler import common
from local.butler import constants
from local.butler import package
from clusterfuzz._internal.base import utils
from src.clusterfuzz._internal.config import local_config
from src.clusterfuzz._internal.system import environment

Expand Down
3 changes: 2 additions & 1 deletion src/local/butler/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ def package(revision,

target_zip_name = constants.LEGACY_ZIP_NAME
if platform_name:
target_zip_name = utils.get_platform_deployment_filename(platform_name, release)
target_zip_name = utils.get_platform_deployment_filename(
platform_name, release)

target_zip_path = os.path.join(target_zip_dir, target_zip_name)
_clear_zip(target_zip_path)
Expand Down

0 comments on commit b29b5dd

Please sign in to comment.