summaryrefslogtreecommitdiffstats
path: root/filer.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-12-02 17:09:37 -0500
committerChris Lumens <clumens@redhat.com>2008-12-02 17:10:07 -0500
commit5ce9a5ae994cbd3140b98d41041fb7ce559d5f47 (patch)
tree15ff71939fc412cf55a2f0e29ab2f2698e09e7ad /filer.py
parent5b96a97a87a633ffb495989ca073430db58600b9 (diff)
downloadanaconda-5ce9a5ae994cbd3140b98d41041fb7ce559d5f47.tar.gz
anaconda-5ce9a5ae994cbd3140b98d41041fb7ce559d5f47.tar.xz
anaconda-5ce9a5ae994cbd3140b98d41041fb7ce559d5f47.zip
Fix a method name typo.
Diffstat (limited to 'filer.py')
-rw-r--r--filer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/filer.py b/filer.py
index 47fd8d00c..2c3375b38 100644
--- a/filer.py
+++ b/filer.py
@@ -265,7 +265,7 @@ class AbstractBug(object):
"""
return True
- def prependwhitebaord(self, text, which=''):
+ def prependwhiteboard(self, text, which=''):
"""Put the given text at the front of the given whiteboard. Not all
bug filing systems support the concept of whiteboards, so this
method is optional. If provided, it should return some non-None
@@ -444,7 +444,7 @@ class BugzillaBug(AbstractBug):
def appendwhiteboard(self, text, which='status'):
return self.__withBugDo(lambda b: b.appendwhiteboard(text, which=which))
- def prependwhitebaord(self, text, which='status'):
+ def prependwhiteboard(self, text, which='status'):
return self.__withBugDo(lambda b: b.prependwhiteboard(text, which=which))
def setwhiteboard(self, text, which='status'):