Explorar el Código

Merge pull request #2271 from rbaier/typofix

typo / finished sentence in comment
Ask Solem Hoel hace 10 años
padre
commit
325530ff1d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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: