From 62ed4c8a3dfb95440acfa244b46409680f9a22de Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Thu, 10 Sep 2009 15:10:17 -0400 Subject: Ensure there is a trailing slash in the directory --- rpmbuild-remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rpmbuild-remote.py') diff --git a/rpmbuild-remote.py b/rpmbuild-remote.py index 7c3eb08..cee062f 100755 --- a/rpmbuild-remote.py +++ b/rpmbuild-remote.py @@ -196,7 +196,7 @@ def execute_jobs(opts, system, jobs): (sin, sout, serr) = session.exec_command(cmd) LOG.info("Downloading results...") sin.close() - fetch(session, os.path.join(opts.dest, file), sout, serr) + fetch(session, os.path.join(opts.dest, file, ''), sout, serr) sout.close() serr.close() session.close() -- cgit