tuned: fixed error message when invalid arguments
This commit is contained in:
parent
4a4023fc19
commit
7e9001fdb2
1 changed files with 1 additions and 1 deletions
2
tuned
2
tuned
|
|
@ -66,7 +66,7 @@ if __name__ == "__main__":
|
|||
try:
|
||||
opts, args = getopt.getopt(sys.argv[1:], "dc:D", ["daemon", "config=", "debug"])
|
||||
except getopt.error, e:
|
||||
print >>sys.stderr, ("Error parsing command-line arguments: %s", e)
|
||||
print >>sys.stderr, ("Error parsing command-line arguments: %s" % e)
|
||||
usage()
|
||||
sys.exit(1)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue