diff options
author | Helmut Grohne <helmut@subdivi.de> | 2013-02-21 08:42:44 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2013-02-21 08:42:44 +0100 |
commit | 060979cd835d4e221d54b38ce57790befc056007 (patch) | |
tree | cac067b5f2ceb838d88f94439b364aa0e683fc98 | |
parent | a77d801a38f80e30f9f9c16d94fdcd2efc16a9a8 (diff) | |
download | debian-dedup-060979cd835d4e221d54b38ce57790befc056007.tar.gz |
rename test.py to importpkg.py
-rwxr-xr-x | autoimport.py | 2 | ||||
-rwxr-xr-x | importpkg.py (renamed from test.py) | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/autoimport.py b/autoimport.py index ab3e45c..ec64761 100755 --- a/autoimport.py +++ b/autoimport.py @@ -27,7 +27,7 @@ def main(): pkgurl = "%s/%s" % (urlbase, pkg["Filename"]) print("importing %s" % name) dl = subprocess.Popen(["curl", "-s", pkgurl], stdout=subprocess.PIPE) - imp = subprocess.Popen("./test.py", stdin=dl.stdout) + imp = subprocess.Popen("./importpkg.py", stdin=dl.stdout) if dl.wait(): print("curl failed") if imp.wait(): |