Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: equinor/ert
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3adcee89def37f3ef1ee7af4949147a604c25c23
Choose a base ref
..
head repository: equinor/ert
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d749a372e1c943866f36059140dfb7ab205a516c
Choose a head ref
Showing with 3 additions and 2 deletions.
  1. +3 −2 src/ert/gui/simulation/experiment_panel.py
5 changes: 3 additions & 2 deletions src/ert/gui/simulation/experiment_panel.py
Original file line number Diff line number Diff line change
@@ -307,6 +307,7 @@ def create_md_table(self, kv: Dict[str, str], output: str):
output += "| Key | Value |\n"
output += "|:-----|:-----|\n"
for k, v in kv.items():
v = v.replace("_", r"\_")
output += f"| {k} | {v} |\n"
output += "\n"
return output
@@ -315,7 +316,7 @@ def populate_clipboard_debug_info(self):
output = ""
kv = {}

kv["Date"] = datetime.now().strftime("%Y/%m/%d %H:%M:%S")
kv["Date"] = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
kv["OS"] = (
platform.system() + " " + platform.release() + " " + platform.machine()
)
@@ -327,7 +328,7 @@ def populate_clipboard_debug_info(self):

kv["Python Version"] = platform.python_version()
kv["Queue"] = self.config.queue_config.queue_system.name
kv["Max Running"] = self.config.queue_config.queue_options.max_running
kv["Max Running"] = str(self.config.queue_config.queue_options.max_running)

output += self.create_md_table(kv, output)