From d260e23787fb4942b151ed7516fc8a7c4207ba12 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Tue, 9 Jun 2020 19:33:15 +0200 Subject: [PATCH] Remove tmp hack to not push all apps --- autopatches/autopatch.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/autopatches/autopatch.py b/autopatches/autopatch.py index 84662cff..1ace3b78 100755 --- a/autopatches/autopatch.py +++ b/autopatches/autopatch.py @@ -102,8 +102,6 @@ def push(patch): apps_to_push = [app for app in apps() if diff_not_empty(app) and app_is_on_github(app)] - apps_to_push = [app for app in apps() if app["id"] == "piwigo"] - with requests.Session() as s: s.headers.update({"Authorization": f"token {token}"}) for app in progressbar(apps_to_push, "Forking: ", 40):