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:
authorlovetox <philipp@hoerist.com>2022-06-15 00:31:16 +0300
committerlovetox <philipp@hoerist.com>2022-06-15 00:46:35 +0300
commit8f304acb946d36040e7012beeb52c3ab67c9a7d3 (patch)
tree5f4fd5f9032d92bc0394336aba5d06788672aa42 /.ci
parent50aec5745171d286ed215c8349cfccbe57318899 (diff)
chore: Fix codestyle errors
Diffstat (limited to '.ci')
-rw-r--r--.ci/appveyor_build.py2
-rwxr-xr-x.ci/debian_build.py12
2 files changed, 7 insertions, 7 deletions
diff --git a/.ci/appveyor_build.py b/.ci/appveyor_build.py
index a91439236..f301c0945 100644
--- a/.ci/appveyor_build.py
+++ b/.ci/appveyor_build.py
@@ -51,7 +51,7 @@ def start_build() -> str:
'branch': BRANCH,
'commitId': os.environ['CI_COMMIT_SHA'],
'environmentVariables': {
- 'GAJIM_VERSION': get_gajim_version(),
+ 'GAJIM_VERSION': get_gajim_version(),
}
}
req = requests.post(BUILDS_API_URL, headers=HEADERS, json=payload)
diff --git a/.ci/debian_build.py b/.ci/debian_build.py
index 7c2fc3525..6407a51fd 100755
--- a/.ci/debian_build.py
+++ b/.ci/debian_build.py
@@ -79,12 +79,12 @@ def prepare_changelog(context: ReleaseContext) -> None:
def build(context: ReleaseContext) -> None:
log.info('Start package build')
subprocess.run(
- [
- 'dpkg-buildpackage',
- '--no-sign'
- ],
- cwd=context.release_dir,
- check=True)
+ [
+ 'dpkg-buildpackage',
+ '--no-sign'
+ ],
+ cwd=context.release_dir,
+ check=True)
if __name__ == '__main__':