[Nvda-dev] commit r2413 - in trunk: . source/appModules

NVDA Subversion svn at nvda-project.org
Sun Oct 5 22:15:51 UTC 2008


Author: bzr
Date: Sun Oct  5 22:15:50 2008
New Revision: 2413

Log:
calc appModule: Fix call to super which was missed during the AppModule class rename.

Modified:
   trunk/   (props changed)
   trunk/source/appModules/calc.py

Modified: trunk/source/appModules/calc.py
==============================================================================
--- trunk/source/appModules/calc.py	(original)
+++ trunk/source/appModules/calc.py	Sun Oct  5 22:15:50 2008
@@ -4,7 +4,7 @@
 class AppModule(appModuleHandler.AppModule):
 
 	def __init__(self,*args,**kwargs):
-		super(appModule,self).__init__(*args,**kwargs)
+		super(AppModule,self).__init__(*args,**kwargs)
 		self._lastValue=None
 
 	def event_NVDAObject_init(self,obj):



More information about the Nvda-dev mailing list