Skip to content
Snippets Groups Projects
Commit 80497f12 authored by Matt Traudt's avatar Matt Traudt
Browse files

Stop pwgen from overwriting stdout

GH: closes #89
parent 0919c591
Branches
Tags
No related merge requests found
......@@ -10,8 +10,7 @@ def gen_parser(sub):
'authenticating to an sbws server.'
p = sub.add_parser('pwgen', formatter_class=ArgumentDefaultsHelpFormatter,
description=d)
p.add_argument('--output', type=str, default='/dev/stdout',
help='Where to write the password')
p.add_argument('--output', type=str, help='Where to write the password')
def rand_char():
......@@ -29,5 +28,8 @@ def rand_str():
def main(args, conf):
global rng
rng = random.SystemRandom()
with open(args.output, 'wt') as fd:
fd.write(rand_str() + '\n')
if args.output:
with open(args.output, 'wt') as fd:
fd.write(rand_str() + '\n')
else:
print(rand_str())
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment