mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2023-06-08.git
synced 2024-08-15 00:53:38 +00:00
Use .strip for finding email
This commit is contained in:
parent
316ca2ab34
commit
7a7e735d36
1 changed files with 1 additions and 1 deletions
|
@ -603,7 +603,7 @@ def fetch_user(sid, client, headers)
|
||||||
|
|
||||||
email = feed.xpath_node(%q(//a[@class="yt-masthead-picker-header yt-masthead-picker-active-account"]))
|
email = feed.xpath_node(%q(//a[@class="yt-masthead-picker-header yt-masthead-picker-active-account"]))
|
||||||
if email
|
if email
|
||||||
email = email.content.lstrip.rstrip
|
email = email.content.strip
|
||||||
else
|
else
|
||||||
email = ""
|
email = ""
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue