Skip to content

Commit

Permalink
Reordered params to mirror base class order.
Browse files Browse the repository at this point in the history
  • Loading branch information
gangefors committed Dec 5, 2014
1 parent d10f52e commit 74e3574
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions master/buildbot/schedulers/timed.py
Expand Up @@ -320,8 +320,8 @@ def __init__(self, name, builderNames, minute=0, hour='*',
reason="The Nightly scheduler named '%(name)s' triggered this build",
**kwargs):
NightlyBase.__init__(self, name=name, builderNames=builderNames,
minute=minute, hour=hour, dayOfWeek=dayOfWeek,
month=month, dayOfMonth=dayOfMonth, reason=reason,
minute=minute, hour=hour, dayOfMonth=dayOfMonth,
month=month, dayOfWeek=dayOfWeek, reason=reason,
**kwargs)


Expand All @@ -333,8 +333,8 @@ def __init__(self, name, builderNames, minute=0, hour='*',
reason="The NightlyTriggerable scheduler named '%(name)s' triggered this build",
**kwargs):
NightlyBase.__init__(self, name=name, builderNames=builderNames,
minute=minute, hour=hour, dayOfWeek=dayOfWeek,
month=month, dayOfMonth=dayOfMonth, reason=reason,
minute=minute, hour=hour, dayOfMonth=dayOfMonth,
month=month, dayOfWeek=dayOfWeek, reason=reason,
**kwargs)

self._lastTrigger = None
Expand Down

0 comments on commit 74e3574

Please sign in to comment.