Refactor code

This commit is contained in:
Arinerron 2018-04-22 20:49:53 -07:00
parent a5dbf73df4
commit 0dc6a0b6c5
No known key found for this signature in database
GPG key ID: 99383627861C62F0
3 changed files with 14 additions and 15 deletions

View file

@ -120,14 +120,11 @@ class OnionrUtils:
def getMyAddress(self):
try:
myAddressFile = open("data/hs/hostname", 'r')
myAddress = myAddressFile.read()
myAddressFile.close()
return myAddress.strip()
with open('./data/hs/hostname', 'r') as hostname:
return hostname.read().strip()
except Exception as error:
logger.error('Failed to read my address.', error=error)
return ''
return None
def localCommand(self, command, silent = True):
'''