summaryrefslogtreecommitdiffstats
path: root/filer.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-10-31 16:34:51 -0400
committerChris Lumens <clumens@redhat.com>2008-10-31 16:34:51 -0400
commit0f7f33279b7131139ad45d7bcaed13ac7ded03e5 (patch)
tree522d736ce2b3b4c4f7a32eb63c8e92463a136b01 /filer.py
parent934a10a9b09ae7b4630c7c21c8c23cf9592990f8 (diff)
downloadanaconda-0f7f33279b7131139ad45d7bcaed13ac7ded03e5.tar.gz
anaconda-0f7f33279b7131139ad45d7bcaed13ac7ded03e5.tar.xz
anaconda-0f7f33279b7131139ad45d7bcaed13ac7ded03e5.zip
Fix a typo that shouldn't have even gotten though.
Diffstat (limited to 'filer.py')
-rw-r--r--filer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/filer.py b/filer.py
index 38be69746..eb3f6470f 100644
--- a/filer.py
+++ b/filer.py
@@ -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: