We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d8fa0e commit be1245eCopy full SHA for be1245e
qmi/tools/proc.py
@@ -326,6 +326,9 @@ def start_local_process(context_name: str) -> int:
326
else:
327
output_dir = qmi.context().get_qmi_home_dir()
328
329
+ if output_dir.startswith("~"):
330
+ output_dir = output_dir.replace("~", os.path.expanduser("~"))
331
+
332
# Create output log file.
333
datetime = time.strftime("%Y%m%d_%H%M%S", time.gmtime())
334
output_file_name = os.path.join(output_dir, context_name + "_" + datetime + ".out")
0 commit comments