diff options
author | Chris Lumens <clumens@redhat.com> | 2008-10-31 16:34:51 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2008-10-31 16:34:51 -0400 |
commit | 0f7f33279b7131139ad45d7bcaed13ac7ded03e5 (patch) | |
tree | 522d736ce2b3b4c4f7a32eb63c8e92463a136b01 | |
parent | 934a10a9b09ae7b4630c7c21c8c23cf9592990f8 (diff) | |
download | anaconda-0f7f33279b7131139ad45d7bcaed13ac7ded03e5.tar.gz anaconda-0f7f33279b7131139ad45d7bcaed13ac7ded03e5.tar.xz anaconda-0f7f33279b7131139ad45d7bcaed13ac7ded03e5.zip |
Fix a typo that shouldn't have even gotten though.
-rw-r--r-- | filer.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -325,7 +325,7 @@ class BugzillaFiler(AbstractFiler): if key == "platform": platformLst = self.__withBugzillaDo(lambda b: b._proxy.Bug.legal_values({'field': 'platform'})) if not val in platformLst: - kwargs[key] = platformList[0] + kwargs[key] = platformLst[0] bug = self.__withBugzillaDo(lambda b: b.createbug(**kwargs)) for (wb, val) in whiteboards: |