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

Unified Diff: site_config/config.py

Issue 3777004: Fix imports and bring over a missing file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 10 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « scripts/master/factory/chromeos_factory.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: site_config/config.py
===================================================================
--- site_config/config.py (revision 62488)
+++ site_config/config.py (working copy)
@@ -17,10 +17,7 @@
from twisted.spread import banana
-try:
- import config_private
-except:
- import config_default as config_private
+import config_private
from common import chromium_utils
# By default, the banana's string size limit is 640kb, which is unsufficient
@@ -212,24 +209,6 @@
# Where to save gtest JSON results.
gtest_result_archive = www_dir_base + 'gtest_results'
-class IRC(config_private.IRC):
- """Options for the IRC bot."""
- # Where the IRC bot lives.
- host = 'irc.freenode.net'
- channels = ['#chromium']
-
- default_topic = 'IRC bot not yet connected'
-
- whuffie_file = '~/www/irc/whuffie_list.js'
- whuffie_reason_file = '~/www/irc/whuffie_reasons.js'
- topic_file = '~/www/irc/topic_list.js'
-
- # Any URLs found in IRC topics will be passed as %s to this format before
- # being added to the topic-list page. It must contain exactly one "%s" token.
- # To disable URL mangling, set this to "%s".
- href_redirect_format = 'http://www.google.com/url?sa=D&q=%s'
-
-
class Distributed(config_private.Distributed):
# File holding current version information.
version_file = Installer.version_file
« no previous file with comments | « scripts/master/factory/chromeos_factory.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698