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

@ -556,13 +556,11 @@ class Onionr:
return
def get_hostname(self):
retVal = ''
try:
with open('./data/hs/hostname', 'r') as hostname:
retVal = hostname.read()
except FileNotFoundError:
retVal = None
return retVal
return hostname.read().strip()
except Exception:
return None
def addFile(self):
'''command to add a file to the onionr network'''