mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
fix function get_file
This commit is contained in:
parent
3d83d7d9ef
commit
2431783b96
1 changed files with 8 additions and 9 deletions
17
bin/slpkg
17
bin/slpkg
|
@ -49,7 +49,7 @@ import subprocess
|
|||
|
||||
|
||||
__author__ = "dslackw"
|
||||
__version__ = "1.5.3"
|
||||
__version__ = "1.5.2"
|
||||
__license__ = "GNU General Public License v3 (GPLv3)"
|
||||
__email__ = "d.zlatanidis@gmail.com"
|
||||
|
||||
|
@ -141,16 +141,15 @@ def rmv_unused(name):
|
|||
|
||||
# get filename from links
|
||||
def get_file(link, char):
|
||||
j = 0
|
||||
i = 0
|
||||
results = []
|
||||
for urls in link:
|
||||
j += 1
|
||||
results.append(link[-j:])
|
||||
for file in results:
|
||||
if file.startswith(char):
|
||||
break
|
||||
for file in range(len(link)):
|
||||
i -= 1
|
||||
results.append(link[i])
|
||||
if link[i] == char:
|
||||
break
|
||||
|
||||
return file.replace(char, "").strip(' ')
|
||||
return ''.join(results[::-1]).replace('/', '').strip(' ')
|
||||
|
||||
|
||||
# this fuction return if the package exist
|
||||
|
|
Loading…
Reference in a new issue