소스 검색

Remove extraenous whitespace (PEP8)

Ask Solem 16 년 전
부모
커밋
e7a8a02ba5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      celery/models.py

+ 1 - 1
celery/models.py

@@ -42,7 +42,7 @@ class PeriodicTaskMeta(models.Model):
     """Information about a Periodic Task."""
     name = models.CharField(_(u"name"), max_length=255, unique=True)
     last_run_at = models.DateTimeField(_(u"last time run"),
-                                       blank=True, 
+                                       blank=True,
                                        default=datetime.fromtimestamp(0))
     total_run_count = models.PositiveIntegerField(_(u"total run count"),
                                                   default=0)