Merge branch 'crypto' of github.com:beardog108/onionr into crypto

This commit is contained in:
Kevin Froman 2018-04-18 21:56:38 -05:00
commit 8d342df5e6
2 changed files with 4 additions and 4 deletions

View File

@ -164,8 +164,8 @@ def readline(message = ''):
output = colors.filter(output)
sys.stdout.write(output)
return input()
return sys.stdin.readline()
def confirm(default = 'y', message = 'Are you sure %s? '):
'''

View File

@ -93,7 +93,7 @@ class Onionr:
if os.path.exists('data/'):
break
else:
logger.error('Failed to decrypt: ' + result[1])
logger.error('Failed to decrypt: ' + result[1], timestamp = False)
else:
if not os.path.exists('data/'):
os.mkdir('data/')
@ -404,7 +404,7 @@ class Onionr:
Displays a "command not found" message
'''
logger.error('Command not found.')
logger.error('Command not found.', timestamp = False)
def showHelpSuggestion(self):
'''