Browse Source

typo / finished sentence in comment

roderick 10 years ago
parent
commit
6188b92290
1 changed files with 1 additions and 1 deletions
  1. 1 1
      celery/loaders/base.py

+ 1 - 1
celery/loaders/base.py

@@ -153,7 +153,7 @@ class BaseLoader(object):
             return symbol_by_name(path, imp=imp)
             return symbol_by_name(path, imp=imp)
 
 
         # Not sure if path is just a module name or if it includes an
         # Not sure if path is just a module name or if it includes an
-        # attribute name (e.g. ``os.path``, vs, ``os.path.abspath``
+        # attribute name (e.g. ``os.path``, vs, ``os.path.abspath``).
         try:
         try:
             return imp(path)
             return imp(path)
         except ImportError:
         except ImportError: