From 56979493d6635c7b31369c3617ff4d740e2e4e98 Mon Sep 17 00:00:00 2001 From: Marcus Huewe Date: Fri, 8 Mar 2013 19:09:29 +0100 Subject: [PATCH] - fixed grammar error --- osc/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osc/core.py b/osc/core.py index c3040b05..ce15a41c 100644 --- a/osc/core.py +++ b/osc/core.py @@ -3871,8 +3871,8 @@ def check_existing_requests(apiurl, src_project, src_package, dst_project, req_state=['new','review', 'declined']) repl = '' if reqs: - print 'There are already following submit request: %s.' % \ - ', '.join([i.reqid for i in reqs ]) + print 'There are already the following submit request: %s.' % \ + ', '.join([i.reqid for i in reqs]) repl = raw_input('Supersede the old requests? (y/n/c) ') if repl.lower() == 'c': print >>sys.stderr, 'Aborting'