1
0
mirror of https://github.com/django/django.git synced 2025-04-24 09:14:39 +00:00

Merge pull request #2050 from maurycyp/master

Renamed first argument of class method to cls
This commit is contained in:
Alex Gaynor 2013-12-07 17:16:01 -08:00
commit d653c0bd2e

View File

@ -28,7 +28,7 @@ now = datetime.datetime(2012, 3, 9, 22, 30)
class MockDateTime(datetime.datetime):
@classmethod
def now(self, tz=None):
def now(cls, tz=None):
if tz is None or tz.utcoffset(now) is None:
return now
else: