Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions devices/linux/Files/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
parser.add_argument("--iwd_conf", action='store_true', dest='iwd_conf',
help='generate iwd config file without configuring the system')
parser.add_argument("--gui", action='store', dest='gui',
help='one of: tty, tkinter, zenity, kdialog, yad - use this GUI ' + \
help='one of: tty, tkinter, zenity, kdialog, yad - use this GUI '
'system if present, falling back to standard choice if not')
ARGS = parser.parse_args()
if ARGS.debug:
Expand Down Expand Up @@ -765,7 +765,7 @@ def __process_p12(self) -> bool:
'pass:' + self.password, '-nokeys', '-clcerts']
shell_command1 = subprocess.Popen(command1, stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
out, err = shell_command1.communicate()
out, _err = shell_command1.communicate()
if shell_command1.returncode != 0:
return False
if Config.use_other_tls_id:
Expand Down
Loading