[Checkins] SVN: zc.sharing/trunk/src/zc/__init__.py remove inappropriate indecipherable idiomancy

Fred L. Drake, Jr. fdrake at gmail.com
Tue Aug 29 11:18:11 EDT 2006


Log message for revision 69846:
  remove inappropriate indecipherable idiomancy

Changed:
  U   zc.sharing/trunk/src/zc/__init__.py

-=-
Modified: zc.sharing/trunk/src/zc/__init__.py
===================================================================
--- zc.sharing/trunk/src/zc/__init__.py	2006-08-29 15:12:45 UTC (rev 69845)
+++ zc.sharing/trunk/src/zc/__init__.py	2006-08-29 15:18:11 UTC (rev 69846)
@@ -1,6 +1,7 @@
 # namespace package boilerplate
 try:
-    __import__('pkg_resources').declare_namespace(__name__)
+    import pkg_resources
+    pkg_resources.declare_namespace(__name__)
 except ImportError, e:
     from pkgutil import extend_path
     __path__ = extend_path(__path__, __name__)



More information about the Checkins mailing list