From kde-commits Mon Jul 04 08:20:39 2005 From: Thomas Zander Date: Mon, 04 Jul 2005 08:20:39 +0000 To: kde-commits Subject: kdenonbeta/unsermake Message-Id: <1120465239.439348.25136.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=112046525432081 SVN commit 431399 by zander: Error message clearification M +2 -2 __init__.py --- trunk/kdenonbeta/unsermake/__init__.py #431398:431399 @@ -948,7 +948,7 @@ try: max_children = string.atoi(param) except: - utilities.print_error("you have to pass an integer behind -j") + utilities.print_error("you have to pass an integer after -j") sys.exit(1) makeflags += "-j %d " % max_children if option == '--just-print' or option == '-n': @@ -970,7 +970,7 @@ try: max_compile_jobs = string.atoi(param) except: - utilities.print_error("you have to pass an integer behind --compile-jobs") + utilities.print_error("you have to pass an integer after --compile-jobs") sys.exit(1) makeflags += "--compile-jobs %s " % max_compile_jobs if option == '--no-real-compare':