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':