[Checkins] SVN: grok/trunk/src/grok/scan.py wrap an overlong line

Philipp von Weitershausen philikon at philikon.de
Thu Oct 19 04:21:40 EDT 2006


Log message for revision 70799:
  wrap an overlong line
  

Changed:
  U   grok/trunk/src/grok/scan.py

-=-
Modified: grok/trunk/src/grok/scan.py
===================================================================
--- grok/trunk/src/grok/scan.py	2006-10-19 08:19:51 UTC (rev 70798)
+++ grok/trunk/src/grok/scan.py	2006-10-19 08:21:39 UTC (rev 70799)
@@ -80,8 +80,9 @@
                 module_infos.append(ModuleInfo(entry_path, dotted_name))
             # Case two: packages
             elif is_package(entry_path):
-                # We can blindly use __init__.py even if only __init__.pyc exists
-                # because we never actually use that filename.
+                # We can blindly use __init__.py even if only
+                # __init__.pyc exists because we never actually use
+                # that filename.
                 module_infos.append(ModuleInfo(
                     os.path.join(entry_path, '__init__.py'), dotted_name))
         return module_infos



More information about the Checkins mailing list