aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/python/PyBinary.java
diff options
context:
space:
mode:
authorGravatar Yun Peng <pcloudy@google.com>2016-03-18 21:14:51 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-03-21 09:35:16 +0000
commitda9410cff80eeeaf080fa0149c6fe4d583124987 (patch)
tree6e936437a7d9b3c08c4080decd49b52c0e890a7e /src/main/java/com/google/devtools/build/lib/rules/python/PyBinary.java
parente0239b7aead2ab1f49bdd3a911513082289fc4fc (diff)
Fixed indentation problem: 8 spaces -> 4 spaces
-- MOS_MIGRATED_REVID=117583615
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/python/PyBinary.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/python/PyBinary.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/python/PyBinary.java b/src/main/java/com/google/devtools/build/lib/rules/python/PyBinary.java
index ab8d490e4b..ae048a0a03 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/python/PyBinary.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/python/PyBinary.java
@@ -76,7 +76,7 @@ public abstract class PyBinary implements RuleConfiguredTargetFactory {
Runfiles commonRunfiles = collectCommonRunfiles(ruleContext, common, semantics);
Runfiles.Builder defaultRunfilesBuilder = new Runfiles.Builder(ruleContext.getWorkspaceName())
- .merge(commonRunfiles);
+ .merge(commonRunfiles);
semantics.collectDefaultRunfilesForBinary(ruleContext, defaultRunfilesBuilder);
Runfiles defaultRunfiles = defaultRunfilesBuilder.build();