Remove redundant code.

Why did I write that???
This commit is contained in:
0x80 2022-05-05 00:00:00 +00:00
parent a1475943a7
commit 1004f98619
Signed by: 0x80
GPG Key ID: 68368BCBC000EF51
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ def extract_from_url (url, verbosity):
# get username # get username
index = path.find("/",2) index = path.find("/",2)
if index > -1: if index > -1:
username = username = path[1:index] username = path[1:index]
else: else:
username = path[1:] username = path[1:]