Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authormesonium <mesonium@posteo.eu>2023-01-06 23:11:03 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-01-07 15:34:48 +0300
commit2a43353ca247f1250edffc01dd124d6c4c8c3ea1 (patch)
tree1f091be941a6de92e430a37132d067c2660200cf /.ci
parentcbecf724ccaf33972036bae9ac5e41acd20510eb (diff)
cq: Cleanup unused local variables
- Remove never used variables - Try to incorporate declared but not used variable where it seemed to be in the author's original intention
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/debian_build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/debian_build.py b/.ci/debian_build.py
index 6407a51fd..d112c3e53 100755
--- a/.ci/debian_build.py
+++ b/.ci/debian_build.py
@@ -61,7 +61,7 @@ def prepare_package_dir(context: ReleaseContext) -> None:
log.info('Rename dir to: %s', context.release_name)
folder = list(BUILD_DIR.glob(f'{context.app}-?.?.?'))[0]
- folder = folder.rename(context.release_dir)
+ folder.rename(context.release_dir)
log.info('Copy debian folder into release directory')
shutil.copytree(ROOT_DIR / 'debian', context.release_dir / 'debian')