Skip to content

Commit

Permalink
add missing arg
Browse files Browse the repository at this point in the history
  • Loading branch information
almenscorner committed Sep 21, 2023
1 parent 0af01db commit 6feb7b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IntuneCD/run_backup.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def run_backup(path, output, exclude, token, prefix):
if args.intunecdmonitor:
old_stdout = sys.stdout
sys.stdout = feedstdout = StringIO()
count = run_backup(args.path, args.output, exclude, token)
count = run_backup(args.path, args.output, exclude, token, args.prefix)
sys.stdout = old_stdout
feed_bytes = feedstdout.getvalue().encode("utf-8")
out = base64.b64encode(feed_bytes).decode("utf-8")
Expand Down

0 comments on commit 6feb7b2

Please sign in to comment.