Skip to content
This repository has been archived by the owner on Aug 20, 2018. It is now read-only.

Commit

Permalink
Bug 849822 - dmADB getDirectory should block, r=wlach
Browse files Browse the repository at this point in the history
  • Loading branch information
ahal-test committed Mar 11, 2013
1 parent 3a62843 commit 7e9d85e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mozdevice/mozdevice/devicemanagerADB.py
Expand Up @@ -395,7 +395,7 @@ def getFile(self, remoteFile, localFile):
self._runPull(remoteFile, localFile)

def getDirectory(self, remoteDir, localDir, checkDir=True):
self._runCmd(["pull", remoteDir, localDir])
self._runCmd(["pull", remoteDir, localDir]).wait()

def validateFile(self, remoteFile, localFile):
md5Remote = self._getRemoteHash(remoteFile)
Expand Down

0 comments on commit 7e9d85e

Please sign in to comment.