From c95c759b9ec0acacb28de20e46aa7ab38174f264 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Wed, 9 Sep 2009 13:36:21 -0400 Subject: Add '.' to extension possibilities --- rpmbuild-remote.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'rpmbuild-remote.py') diff --git a/rpmbuild-remote.py b/rpmbuild-remote.py index 057a170..fb0e17b 100755 --- a/rpmbuild-remote.py +++ b/rpmbuild-remote.py @@ -12,12 +12,12 @@ LOG = logging.getLogger('rpmbuild-remote') LOG.addHandler(logging.StreamHandler()) EXTENSIONS = ( - 'patch', - 'bz2', - 'gz', - 'tgz', - 'lzma', - 'xz', + '.patch', + '.bz2', + '.gz', + '.tgz', + '.lzma', + '.xz', ) def get_parser(): -- cgit