From 28404dd8a67f6b2b991def5333d407c297047b26 Mon Sep 17 00:00:00 2001 From: Chris Church Date: Sat, 22 Jun 2013 16:30:17 -0400 Subject: [PATCH] Fix comment typos. --- ansibleworks/main/models/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ansibleworks/main/models/__init__.py b/ansibleworks/main/models/__init__.py index f305211a9a..0386fa3537 100644 --- a/ansibleworks/main/models/__init__.py +++ b/ansibleworks/main/models/__init__.py @@ -857,7 +857,7 @@ class Job(CommonModel): self.save(update_fields=['status']) task_result = RunJob().delay(self.pk, **opts) # Reload job from database so we don't clobber results from RunJob - # (mainly from tests when using Djanog 1.4.x). + # (mainly from tests when using Django 1.4.x). job = Job.objects.get(pk=self.pk) # The TaskMeta instance in the database isn't created until the worker # starts processing the task, so we can only store the task ID here. diff --git a/setup.py b/setup.py index 7e8fe85ac3..39267203d2 100755 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ def proc_data_files(data_files): result = [] - # Ff running in a virtualenv, don't return data files that would install to + # If running in a virtualenv, don't return data files that would install to # system paths (mainly useful for running tests via tox). if hasattr(sys, 'real_prefix'): return result