aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2015-08-09 15:14:55 -0400
committerAnthony G. Basile <blueness@gentoo.org>2015-08-09 15:14:55 -0400
commit5f43bcc634c32be5724935cb8e0ec88f4f1b4c14 (patch)
treede482e4321d8f3e54985b51caaec4d0e9dc5745d
parentbin/grsup: backup old make.conf if clobbering. (diff)
downloadgrss-5f43bcc634c32be5724935cb8e0ec88f4f1b4c14.tar.gz
grss-5f43bcc634c32be5724935cb8e0ec88f4f1b4c14.tar.bz2
grss-5f43bcc634c32be5724935cb8e0ec88f4f1b4c14.zip
bin/grsrun: avoid name collision with usage().
-rwxr-xr-xbin/grsrun4
1 files 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)