From 8056ee9baed4dbbcb2dfae06f530983d41ab456b Mon Sep 17 00:00:00 2001 From: Marc Culler Date: Sun, 1 Dec 2024 11:41:44 -0600 Subject: [PATCH] Fix string with backslash in memory.py --- cypari/memory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypari/memory.py b/cypari/memory.py index 641f28a..23b2e2d 100644 --- a/cypari/memory.py +++ b/cypari/memory.py @@ -2,7 +2,7 @@ import subprocess from subprocess import Popen, PIPE -wmic = 'C:\Windows\System32\wbem\wmic' +wmic = r'C:\Windows\System32\wbem\wmic' def total_ram(): if platform.startswith('linux'):