Browse Source

Merge pull request #2271 from rbaier/typofix

typo / finished sentence in comment
Ask Solem Hoel 10 years ago
parent
commit
325530ff1d
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)
 
         # 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:
             return imp(path)
         except ImportError: