mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-22 12:34:19 +00:00
Fix update_qrc_files.py script
This commit is contained in:
parent
15c3836a25
commit
94a23cf1d4
@ -25,12 +25,12 @@
|
||||
<file>nova/engines/piratebay.png</file>
|
||||
<file>nova/engines/vertor.py</file>
|
||||
<file>nova/engines/btdigg.png</file>
|
||||
<file>nova3/sgmllib3.py</file>
|
||||
<file>nova3/nova2.py</file>
|
||||
<file>nova3/novaprinter.py</file>
|
||||
<file>nova3/socks.py</file>
|
||||
<file>nova3/nova2dl.py</file>
|
||||
<file>nova3/helpers.py</file>
|
||||
<file>nova3/sgmllib3.py</file>
|
||||
<file>nova3/engines/vertor.png</file>
|
||||
<file>nova3/engines/kickasstorrents.png</file>
|
||||
<file>nova3/engines/mininova.png</file>
|
||||
@ -52,4 +52,4 @@
|
||||
<file>nova3/engines/vertor.py</file>
|
||||
<file>nova3/engines/btdigg.png</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
</RCC>
|
@ -47,12 +47,13 @@ lang_file.close()
|
||||
# update search_engine directory
|
||||
os.chdir('searchengine')
|
||||
search_list = []
|
||||
for root, dirs, files in os.walk('nova/'):
|
||||
for file in files:
|
||||
if file.startswith("__"):
|
||||
continue
|
||||
if splitext(file)[-1] in ('.py', '.png'):
|
||||
search_list.append(join(root, file))
|
||||
for nova_folder in ['nova/', 'nova3']:
|
||||
for root, dirs, files in os.walk(nova_folder):
|
||||
for file in files:
|
||||
if file.startswith("__"):
|
||||
continue
|
||||
if splitext(file)[-1] in ('.py', '.png'):
|
||||
search_list.append(join(root, file))
|
||||
|
||||
output = '''<!DOCTYPE RCC><RCC version="1.0">
|
||||
<qresource>
|
||||
|
Loading…
x
Reference in New Issue
Block a user