diff options
| author | Chris Lumens <clumens@redhat.com> | 2005-11-17 08:09:14 +0000 |
|---|---|---|
| committer | Chris Lumens <clumens@redhat.com> | 2005-11-17 08:09:14 +0000 |
| commit | 5ea1b95d6bf4862734afb14fedbcfe05cdd86a22 (patch) | |
| tree | d4cd275c9fd5d0b206ef76dafe8d6e8ce16ec909 /scripts | |
| parent | cec3a1eb0d9da33defc1930a99b96365a2d16f53 (diff) | |
| download | anaconda-5ea1b95d6bf4862734afb14fedbcfe05cdd86a22.tar.gz anaconda-5ea1b95d6bf4862734afb14fedbcfe05cdd86a22.tar.xz anaconda-5ea1b95d6bf4862734afb14fedbcfe05cdd86a22.zip | |
Give excludeList a default. I miss typing.
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/pkgorder | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/pkgorder b/scripts/pkgorder index a1771347e..e2b6d492e 100755 --- a/scripts/pkgorder +++ b/scripts/pkgorder @@ -128,7 +128,8 @@ if __name__ == "__main__": parser.add_option("--debug", action="store_true", dest="debug", default=False) parser.add_option("--file", action="store", dest="file") parser.add_option("--product", action="store", dest="productPath", ) - parser.add_option("--exclude", action="append", dest="excludeList") + parser.add_option("--exclude", action="append", dest="excludeList", + default=[]) (options, args) = parser.parse_args() |
