[Dev OpenGP] [96] Deleted fake 'test' plugin. |
[ Thread Index |
Date Index
| More opengp.tuxfamily.org/development Archives
]
Revision: 96
Author: nicolaf
Date: 2009-03-26 09:51:46 +0100 (Thu, 26 Mar 2009)
Log Message:
-----------
Deleted fake 'test' plugin.
Modified Paths:
--------------
trunk/src/lib/ogp/plugins/__init__.py
Removed Paths:
-------------
trunk/src/lib/ogp/plugins/test/
Modified: trunk/src/lib/ogp/plugins/__init__.py
===================================================================
--- trunk/src/lib/ogp/plugins/__init__.py 2009-03-25 17:44:35 UTC (rev 95)
+++ trunk/src/lib/ogp/plugins/__init__.py 2009-03-26 08:51:46 UTC (rev 96)
@@ -7,7 +7,6 @@
from os import listdir
from imp import *
from sys import stderr
-import logging
# Load plugins
path = dirname(resource_filename(__name__, '__init.py__'))
@@ -15,8 +14,5 @@
if isdir(join(path,d)):
try:
load_package('ogp.plugins.' + d, join(path,d))
- logging.debug('ogp.plugins: loaded plugin ' + repr(d) + '.')
except:
- logging.warning('ogp.plugins: failed to load plugin ' + repr(d) + '.')
-
-logging.debug('Loaded ogp.plugins.')
+ stderr.write('ogp.plugins: failed to load plugin ' + repr(d) + '.')