diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2012-02-08 00:21:20 -0500 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2012-02-08 00:21:20 -0500 |
commit | 0738f4c4dbd0f0f7aebb22420b82148fe1c233a0 (patch) | |
tree | fc39462a5d4ad9e21b1435b73a853f8fae287738 /bs4/element.py | |
parent | 43aeaf51780466e023418f7dfd1f456614c061e2 (diff) |
Renamed move_* back to insert_*
Diffstat (limited to 'bs4/element.py')
-rw-r--r-- | bs4/element.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bs4/element.py b/bs4/element.py index 3ee957f..478d285 100644 --- a/bs4/element.py +++ b/bs4/element.py @@ -190,7 +190,7 @@ class PageElement(object): """Appends the given tag to the contents of this tag.""" self.insert(len(self.contents), tag) - def move_before(self, successor): + def insert_before(self, successor): """Makes this element the immediate predecessor of the given element. The two elements will have the same parent, and this element @@ -204,7 +204,7 @@ class PageElement(object): index = parent.index(successor) parent.insert(index, self) - def move_after(self, predecessor): + def insert_after(self, predecessor): """Makes this element the immediate successor of the given element. The two elements will have the same parent, and this element |