From f4c183f5b8833d50ebde59bc46e1746c9ebf9881 Mon Sep 17 00:00:00 2001 From: Maxim Odinintsev Date: Thu, 26 Jun 2014 15:02:15 +0300 Subject: [PATCH] Successfull exit if sync=yes and no package provided --- packaging/portage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/portage b/packaging/portage index c9d9774d428..c9f3f24bdab 100644 --- a/packaging/portage +++ b/packaging/portage @@ -362,7 +362,7 @@ def main(): if p['sync']: sync_repositories(module, webrsync=(p['sync'] == 'web')) if not p['package']: - module.exit_json(msg='Sync successfuly finished.') + module.exit_json(msg='Sync successfully finished.') packages = p['package'].split(',') if p['package'] else []