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

Unified Diff: chrome_frame/combine_libs.py

Issue 8665013: Fix many* python scripts in src/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed chrome_frame/tools/test/page_cycler/cf_cycler.py Created 9 years, 1 month 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 | « base/PRESUBMIT.py ('k') | chrome_frame/tools/helper_shutdown.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/combine_libs.py
diff --git a/chrome_frame/combine_libs.py b/chrome_frame/combine_libs.py
old mode 100644
new mode 100755
index 5a2efec273be6a720b2cdc09acec72590c0c187c..8f2380cd0323101bd18317d10a9681587373bb83
--- a/chrome_frame/combine_libs.py
+++ b/chrome_frame/combine_libs.py
@@ -1,4 +1,5 @@
-# Copyright (c) 2010 The Chromium Authors. All rights reserved.
+#!/usr/bin/env python
+# Copyright (c) 2011 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -108,7 +109,8 @@ def Main():
del os.environ['VS_UNICODE_OUTPUT']
CombineLibraries(output, remove_re, args)
+ return 0
if __name__ == '__main__':
- Main()
+ sys.exit(Main())
« no previous file with comments | « base/PRESUBMIT.py ('k') | chrome_frame/tools/helper_shutdown.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698