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

Unified Diff: bin/chromite

Issue 6364012: Fixed maruel@ style nits. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/chromite.git@master
Patch Set: Created 9 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/chromite
diff --git a/bin/chromite b/bin/chromite
index 42ba760ea6b118821177c8806e67399f12ccc729..88b3968d3842505998271d0c5b5b327c0f527b85 100755
--- a/bin/chromite
+++ b/bin/chromite
@@ -3,7 +3,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-"""Wapper for the chromite shell.
+"""Wrapper for the chromite shell.
This script is intended to run in several ways:
- Outside the chroot, it should be _copied_ to someplace that is in the
@@ -47,9 +47,9 @@ if __name__ == '__main__':
if os.path.isfile(chromite_path):
# Add the directory above chromite to PYTHONPATH before executing, so
# that "import chromite.abc.xyz" works...
- env = dict(os.environ)
+ env = os.environ.copy()
if 'PYTHONPATH' in env:
- env['PYTHONPATH'] = "%s:%s" % (env['PYTHONPATH'], dir)
+ env['PYTHONPATH'] += ':%s' % dir
else:
env['PYTHONPATH'] = dir
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698