From: Andrew M. Kuchling <amk@amk.ca>
Date: Tue, 27 Jun 2000 15:01:10 +0000 (+0000)
Subject: Fix two typos (, instead of ;)
X-Git-Tag: v2.0b1~1392
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b6e468796a71ea4161e5016804502b630b29b45e;p=python

Fix two typos (, instead of ;)
---

diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c
index 11c73b8689..08f4651915 100644
--- a/Modules/_cursesmodule.c
+++ b/Modules/_cursesmodule.c
@@ -1042,7 +1042,7 @@ PyCursesWindow_NoOutRefresh(self,arg)
       Py_BEGIN_ALLOW_THREADS
       rtn = pnoutrefresh(self->win,
 			 pminrow, pmincol, sminrow, 
-			 smincol, smaxrow, smaxcol),
+			 smincol, smaxrow, smaxcol);
       Py_END_ALLOW_THREADS
       return PyCursesCheckERR(rtn, "pnoutrefresh");
     default:
@@ -1111,8 +1111,7 @@ PyCursesWindow_Refresh(self,arg)
       Py_BEGIN_ALLOW_THREADS
       rtn = prefresh(self->win,
 		     pminrow, pmincol, sminrow, 
-		     smincol, smaxrow, smaxcol),
-	
+		     smincol, smaxrow, smaxcol);
       Py_END_ALLOW_THREADS
       return PyCursesCheckERR(rtn, "prefresh");
     default: