mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 00:28:22 +00:00
27 lines
584 B
Python
27 lines
584 B
Python
|
#!/usr/bin/env python3
|
||
|
# -*-coding:UTF-8 -*
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
sys.path.append(os.environ['AIL_HOME'])
|
||
|
##################################
|
||
|
# Import Project packages
|
||
|
##################################
|
||
|
from update.bin.ail_updater import AIL_Updater
|
||
|
from lib import ail_updates
|
||
|
from lib import chats_viewer
|
||
|
|
||
|
class Updater(AIL_Updater):
|
||
|
"""default Updater."""
|
||
|
|
||
|
def __init__(self, version):
|
||
|
super(Updater, self).__init__(version)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
chats_viewer.fix_correlations_subchannel_message()
|
||
|
updater = Updater('v5.5')
|
||
|
updater.run_update()
|
||
|
|