Fix WebHistoryStub for delete argument change

This commit is contained in:
Ryan Roden-Corrent 2017-06-29 21:46:09 -04:00
parent c1f5e77fc6
commit 22880926b1

View File

@ -550,8 +550,8 @@ class WebHistoryStub(sql.SqlTable):
Args:
url: URL string to delete.
"""
self.delete(url, 'url')
self.completion.delete(url, 'url')
self.delete('url', url)
self.completion.delete('url', url)
class HostBlockerStub: