rename old extra_args in commands.py to svn_args to avoid confusion
[buildbot.git] / buildbot / changes / base.py
blob72c45bfb0e571fa5b4231ba41441c2a6311aa8d7
2 from zope.interface import implements
3 from twisted.application import service
5 from buildbot.interfaces import IChangeSource
6 from buildbot import util
8 class ChangeSource(service.Service, util.ComparableMixin):
9 implements(IChangeSource)