commit: 5f43bcc634c32be5724935cb8e0ec88f4f1b4c14
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 9 19:14:55 2015 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Aug 9 19:14:55 2015 +0000
URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=5f43bcc6
bin/grsrun: avoid name collision with usage().
bin/grsrun | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bin/grsrun b/bin/grsrun
index 541b039..7dd3ed7 100755
--- a/bin/grsrun
+++ b/bin/grsrun
@@ -30,7 +30,7 @@ from getopt import gnu_getopt, GetoptError
def usage(rc=1):
- usage = """
+ use = """
usage: grsrun [-m|-u|-h|-s <name>]
flags: Release run. Do every step in build script.
@@ -39,7 +39,7 @@ flags: Release run. Do every step in build
script.
: -s <name>. Only run for GRS system <name>.
: -h Print this help file.
"""
- print(usage)
+ print(use)
sys.exit(rc)