Skip to content

Commit

Permalink
修复可能因为改名导致的问题
Browse files Browse the repository at this point in the history
修复可能因为改名导致的问题
  • Loading branch information
answer-huang committed Dec 5, 2014
1 parent d0748b7 commit d7607bf
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 @@ -194,7 +194,7 @@ def getFilePath(self, rootPath):
if os.path.isdir(appPath):
if len(os.listdir(appPath)) is not 0:
#命令行中需要的文件路径
self.appFilePath = os.path.join(appPath,fileName.split(".")[0])
self.appFilePath = os.path.join(appPath,os.listdir(appPath)[0])

#显示关于我的界面
def OnAboutMe(self, event):
Expand Down

0 comments on commit d7607bf

Please sign in to comment.