Skip to content

Commit

Permalink
修复路径中不能包行空格的 bug
Browse files Browse the repository at this point in the history
修复路径中不能包行空格的 bug
  • Loading branch information
answer-huang committed May 5, 2015
1 parent a78fa29 commit bd36e36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dSYM.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def ListBoxClick(self, event):

#获取文件UUID
def getArchiveUUID(self):
comString = 'dwarfdump --uuid ' + self.dsymFilePath
comString = 'dwarfdump --uuid ' + '"' +self.dsymFilePath + '"'
lines = os.popen(comString).readlines()
self.archiveUUIDDic = {}
for line in lines:
Expand Down

0 comments on commit bd36e36

Please sign in to comment.