mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-22 15:32:19 +03:00
minor bug fixing
This commit is contained in:
parent
d6abe1a78f
commit
e53a989cd2
1 changed files with 3 additions and 5 deletions
|
@ -37,8 +37,6 @@ class Agreement:
|
||||||
|
|
||||||
result = self.db_service.select('contract', ['content', 'title', 'id'], 'id =(select MAX(id) from contract)')
|
result = self.db_service.select('contract', ['content', 'title', 'id'], 'id =(select MAX(id) from contract)')
|
||||||
|
|
||||||
# TODO sec read from conf file
|
|
||||||
|
|
||||||
if result is None or len(result) < 1:
|
if result is None or len(result) < 1:
|
||||||
content = 'Ahenk kurulu bu bilgisayarda ilk defa oturum açıyorsunuz. ' \
|
content = 'Ahenk kurulu bu bilgisayarda ilk defa oturum açıyorsunuz. ' \
|
||||||
'Devam ederseniz Lider-Ahenk in bilgisayar üzeride yapacağı ' \
|
'Devam ederseniz Lider-Ahenk in bilgisayar üzeride yapacağı ' \
|
||||||
|
@ -48,9 +46,9 @@ class Agreement:
|
||||||
title = 'Ahenk Kurulu Bilgisayar Kullanım Anlaşması'
|
title = 'Ahenk Kurulu Bilgisayar Kullanım Anlaşması'
|
||||||
contract_id = '-1'
|
contract_id = '-1'
|
||||||
else:
|
else:
|
||||||
content = result[0]
|
content = result[0][0]
|
||||||
title = result[1]
|
title = result[0][1]
|
||||||
contract_id = result[2]
|
contract_id = result[0][2]
|
||||||
|
|
||||||
try:
|
try:
|
||||||
command = 'export DISPLAY={0};python3 {1} \'{2}\' \'{3}\' '.format(display, self.ask_path, content, title)
|
command = 'export DISPLAY={0};python3 {1} \'{2}\' \'{3}\' '.format(display, self.ask_path, content, title)
|
||||||
|
|
Loading…
Reference in a new issue