am ac39bef4: Merge "common.py: Fix the build."

* commit 'ac39bef43fb032bff75b8558f54107e733355265':
  common.py: Fix the build.
This commit is contained in:
Tao Bao
2015-10-16 15:46:31 -07:00
committed by Android Git Automerger

View File

@@ -1261,8 +1261,11 @@ class BlockDifference(object):
self.path = os.path.join(tmpdir, partition)
b.Compute(self.path)
_, self.device = GetTypeAndDevice("/" + partition,
OPTIONS.source_info_dict)
if src is None:
_, self.device = GetTypeAndDevice("/" + partition, OPTIONS.info_dict)
else:
_, self.device = GetTypeAndDevice("/" + partition,
OPTIONS.source_info_dict)
def WriteScript(self, script, output_zip, progress=None):
if not self.src: