diff options
-rwxr-xr-x | autoimport.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autoimport.py b/autoimport.py index ec64761..6ce7146 100755 --- a/autoimport.py +++ b/autoimport.py @@ -28,10 +28,10 @@ def main(): print("importing %s" % name) dl = subprocess.Popen(["curl", "-s", pkgurl], stdout=subprocess.PIPE) imp = subprocess.Popen("./importpkg.py", stdin=dl.stdout) - if dl.wait(): - print("curl failed") if imp.wait(): print("import failed") + if dl.wait(): + print("curl failed") cur.execute("PRAGMA foreign_keys=1;") cur.executemany("DELETE FROM package WHERE package = ?;", |