Skip to content

Commit 6806a2b

Browse files
committed
Fixed custom proxy
1 parent 248c17c commit 6806a2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

intune/server_side_calls/ms_intune.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8; py-indent-offset: 4; max-line-length: 100 -*-
33

4-
# Copyright (C) 2024 Christopher Pommer <cp.software@outlook.de>
4+
# Copyright (C) 2025 Christopher Pommer <cp.software@outlook.de>
55

66
# This program is free software; you can redistribute it and/or
77
# modify it under the terms of the GNU General Public License
@@ -65,7 +65,7 @@ def generate_special_agent_commands(
6565

6666
if params.proxy:
6767
match params.proxy:
68-
case URLProxy(url):
68+
case URLProxy(url=url):
6969
args += ["--proxy", url]
7070
case EnvProxy():
7171
args += ["--proxy", "FROM_ENVIRONMENT"]

0 commit comments

Comments
 (0)