mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-22 10:52:17 +03:00
register bugfix
This commit is contained in:
parent
f83e182c8c
commit
79a62d6ff6
2 changed files with 8 additions and 3 deletions
|
@ -50,9 +50,15 @@ class Registration:
|
|||
self.user_name = ''
|
||||
self.user_password= ''
|
||||
|
||||
pout = Util.show_registration_message('Makineyi etki alanına almak için bilgileri ilgili alanlara giriniz. LÜTFEN DEVAM EDEN İŞLEMLERİ SONLANDIRDIĞINZA EMİN OLUNUZ !',
|
||||
user_name= os.getlogin()
|
||||
|
||||
self.logger.debug('User : '+ str(user_name))
|
||||
|
||||
pout = Util.show_registration_message(user_name,'Makineyi etki alanına almak için bilgileri ilgili alanlara giriniz. LÜTFEN DEVAM EDEN İŞLEMLERİ SONLANDIRDIĞINZA EMİN OLUNUZ !',
|
||||
'ETKI ALANINA KAYIT', self.host)
|
||||
|
||||
self.logger.debug('pout : ' + str(pout))
|
||||
|
||||
field_values = pout.split(' ')
|
||||
|
||||
user_registration_info = list(field_values)
|
||||
|
|
|
@ -358,8 +358,7 @@ class Util:
|
|||
return None
|
||||
|
||||
@staticmethod
|
||||
def show_registration_message(message,title,host=None):
|
||||
login_user_name = os.getlogin()
|
||||
def show_registration_message(login_user_name,message,title,host=None):
|
||||
|
||||
ask_path = '/usr/share/ahenk/src/base/agreement/ahenkmessage.py'
|
||||
|
||||
|
|
Loading…
Reference in a new issue