From d711cc7038c84e0e8d1b2f10906b3543d0c4d370 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Nov 14 2017 18:23:01 +0000 Subject: atomic: fix number of args passed to generate_static_delta() Signed-off-by: Dusty Mabe --- diff --git a/scripts/push-two-week-atomic.py b/scripts/push-two-week-atomic.py index 692db0b..1aae9a7 100755 --- a/scripts/push-two-week-atomic.py +++ b/scripts/push-two-week-atomic.py @@ -859,6 +859,7 @@ if __name__ == '__main__': for arch in ARCHES: # Generate static delta from previous release generate_static_delta( + pargs.release, old_commit=ostree_commit_data[arch]['previous_commit'], new_commit=ostree_commit_data[arch]['commit'] ) @@ -866,6 +867,7 @@ if __name__ == '__main__': old_commit = PREVIOUS_MAJOR_RELEASE_FINAL_COMMITS.get(arch, None) if old_commit is not None: generate_static_delta( + pargs.release, old_commit=old_commit, new_commit=ostree_commit_data[arch]['commit'], )