Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Side by Side Diff: masters/master.client.libvpx/buildbot.tac

Issue 998253004: CLRF -> LF in buildbot.tac files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 import os 1 import os
2 2
3 from twisted.application import service 3 from twisted.application import service
4 from buildbot.master import BuildMaster 4 from buildbot.master import BuildMaster
5 5
6 basedir = os.path.dirname(os.path.abspath(__file__)) 6 basedir = os.path.dirname(os.path.abspath(__file__))
7 configfile = r'master.cfg' 7 configfile = r'master.cfg'
8 8
9 application = service.Application('buildmaster') 9 application = service.Application('buildmaster')
10 BuildMaster(basedir, configfile).setServiceParent(application) 10 BuildMaster(basedir, configfile).setServiceParent(application)
11 11
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698