diff options
author | Sebastian Parborg <darkdefende@gmail.com> | 2011-08-17 13:00:13 +0200 |
---|---|---|
committer | Sebastian Parborg <darkdefende@gmail.com> | 2011-08-17 13:00:13 +0200 |
commit | 01df95088ec75694548383f66eccd946d2cd236c (patch) | |
tree | 14ee03b8d3e3e6d49385d0aae468a22645093b19 | |
parent | Remove the scm dir if it exists already (diff) | |
download | ebuildgen-01df95088ec75694548383f66eccd946d2cd236c.tar.gz ebuildgen-01df95088ec75694548383f66eccd946d2cd236c.tar.bz2 ebuildgen-01df95088ec75694548383f66eccd946d2cd236c.zip |
Commented out unused flags from the cli help message
-rwxr-xr-x | ebuildgen/cli.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ebuildgen/cli.py b/ebuildgen/cli.py index 3c456a5..c4c6026 100755 --- a/ebuildgen/cli.py +++ b/ebuildgen/cli.py @@ -12,9 +12,9 @@ def cli(): epilog="Example: genebuild --svn <url>") parser.add_argument("url") - parser.add_argument("-t", "--types", metavar="filetype", nargs="+", - default=[".c",".cpp",".h"], - help="what filetypes it should scan") + #parser.add_argument("-t", "--types", metavar="filetype", nargs="+", + # default=[".c",".cpp",".h"], + # help="what filetypes it should scan") parser.add_argument("-g", "--ginc", action="store_true", help="print global includes") parser.add_argument("-l", "--linc", action="store_true", |