forked from sch/Slixfeed
Comment breakpoint()
This commit is contained in:
parent
dbe9ec3073
commit
fa4c85cd61
2 changed files with 4 additions and 6 deletions
|
@ -80,8 +80,6 @@ def is_feed(feed):
|
|||
val : boolean
|
||||
True or False.
|
||||
"""
|
||||
print("Check function action.is_feed")
|
||||
breakpoint()
|
||||
value = False
|
||||
message = None
|
||||
if not feed.entries:
|
||||
|
|
|
@ -987,10 +987,10 @@ async def update_feed_status(db_file, url, status_code):
|
|||
WHERE url = :url
|
||||
"""
|
||||
)
|
||||
try:
|
||||
feed_id = cur.execute(sql, (url,)).fetchone()[0]
|
||||
except:
|
||||
breakpoint()
|
||||
# try:
|
||||
feed_id = cur.execute(sql, (url,)).fetchone()[0]
|
||||
# except:
|
||||
# breakpoint()
|
||||
sql = (
|
||||
"""
|
||||
UPDATE status
|
||||
|
|
Loading…
Reference in a new issue