From 0677427e087b04c0dd9cb642674bef9c3b922437 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Wed, 9 Sep 2009 13:36:33 -0400 Subject: Fix srpm extension search --- rpmbuild-remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpmbuild-remote.py b/rpmbuild-remote.py index fb0e17b..427b1b5 100755 --- a/rpmbuild-remote.py +++ b/rpmbuild-remote.py @@ -190,7 +190,7 @@ def main(): jobs = [] for arg in args: ext = os.path.splitext(arg)[1] - if ext == '.srpm': + if ext == '.rpm': jobs.append(arg) elif ext == '.spec': jobs.append([arg]) -- cgit