Skip to content

Commit

Permalink
code-standards
Browse files Browse the repository at this point in the history
  • Loading branch information
yyhhyyyyyy authored Apr 9, 2024
1 parent 6f3a29b commit 58197cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbgpt/util/system_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def get_cpu_info():
match = re.search(r".*Model name:\s*(.+)", output)
if match:
cpu_info = match.group(1).strip()
match = re.search(f".*型号名称:\s*(.+)", output)
match = re.search(r".*型号名称:\s*(.+)", output)
if match:
cpu_info = match.group(1).strip()
except:
Expand Down

0 comments on commit 58197cd

Please sign in to comment.