diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-23 04:52:36 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-23 04:52:36 +0000 |
commit | 2add55f78d6b5efb097f8a4d089b2eced80d0882 (patch) | |
tree | 3dd0fff9116d6644ea554957d8ac8ecbc3dae139 | |
parent | f71f3a1d024beb614416e57ed0515c9229c88c65 (diff) | |
download | chromium_src-2add55f78d6b5efb097f8a4d089b2eced80d0882.zip chromium_src-2add55f78d6b5efb097f8a4d089b2eced80d0882.tar.gz chromium_src-2add55f78d6b5efb097f8a4d089b2eced80d0882.tar.bz2 |
Remove shebang line from non-executable .py file.
Fixes checkperms failure on the main waterfall:
http://build.chromium.org/p/chromium.chromiumos/builders/Linux%20ChromiumOS%20Full/builds/30316/steps/check_perms/logs/stdio
/b/build/slave/Linux_ChromiumOS/build/src/chrome/common/extensions/docs/server2/fake_host_file_system_provider.py: Has shebang but not executable bit
BUG=none
TBR=hukun@chromium.org,kalman@chromium.org
Review URL: https://codereview.chromium.org/113123007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242351 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/common/extensions/docs/server2/fake_host_file_system_provider.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/common/extensions/docs/server2/fake_host_file_system_provider.py b/chrome/common/extensions/docs/server2/fake_host_file_system_provider.py index ba7b51a..06a4241 100644 --- a/chrome/common/extensions/docs/server2/fake_host_file_system_provider.py +++ b/chrome/common/extensions/docs/server2/fake_host_file_system_provider.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # Copyright 2013 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. @@ -17,4 +16,4 @@ class FakeHostFileSystemProvider(object): @memoize def GetBranch(self, branch): - return MockFileSystem(TestFileSystem(self._file_system_data[str(branch)]))
\ No newline at end of file + return MockFileSystem(TestFileSystem(self._file_system_data[str(branch)])) |