[Winopenrpg-developer] openrpg1/orpg plugins.py,1.1,1.2
Status: Inactive
Brought to you by:
digitalxero
|
From: Digital X. <dig...@us...> - 2006-01-26 17:40:44
|
Update of /cvsroot/winopenrpg/openrpg1/orpg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1406/orpg Modified Files: plugins.py Log Message: removed the xx requirment for plugin names Index: plugins.py =================================================================== RCS file: /cvsroot/winopenrpg/openrpg1/orpg/plugins.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** plugins.py 26 Jan 2006 17:33:15 -0000 1.1 --- plugins.py 26 Jan 2006 17:40:36 -0000 1.2 *************** *** 228,232 **** self.socket={} for p in list_of_plugin_dir: ! if p[:2].lower()=="xx" and p[-3:]==".py": self.ImpPlugin(p[:-3]) --- 228,232 ---- self.socket={} for p in list_of_plugin_dir: ! if p[-3:]==".py": self.ImpPlugin(p[:-3]) |