From 7abd8d1fcdfd01b5015138dd927e9c2ea76a1971 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Wobst?= Date: Sun, 15 May 2011 13:32:44 +0000 Subject: [PATCH] typo git-svn-id: https://pyx.svn.sourceforge.net/svnroot/pyx/trunk/pyx@3113 069f4177-920e-0410-937b-c2a4a81bcd90 --- pyx/pycompat.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyx/pycompat.py b/pyx/pycompat.py index 775f2b24..7f973406 100644 --- a/pyx/pycompat.py +++ b/pyx/pycompat.py @@ -32,9 +32,9 @@ def popen(cmd, mode="r", bufsize=_marker): except ImportError: import os if bufsize is _marker: - return os.popen(command, mode) + return os.popen(cmd, mode) else: - return os.popen(command, mode, bufsize) + return os.popen(cmd, mode, bufsize) try: any = any -- 2.11.4.GIT