From 3c1db96f15e2528410bbc5b037884b110dae4a38 Mon Sep 17 00:00:00 2001 From: RealOrangeOne Date: Sun, 20 Mar 2016 19:38:55 +0000 Subject: [PATCH] Actually run commands --- yaourt/export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yaourt/export.py b/yaourt/export.py index ff7c346..2ce5f1b 100755 --- a/yaourt/export.py +++ b/yaourt/export.py @@ -4,4 +4,4 @@ import os, json os.system('sudo yaourt -Syau') packages = " ".join(json.load(open('packages.json'))) -print("sudo yaourt -S {} ".format(packages)) +os.system("sudo yaourt -S {} ".format(packages))