Skip to content

Commit

Permalink
Merge branch 'hotfix/2.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
kimsungwhee committed Apr 9, 2016
2 parents 1f4849b + 8249f25 commit 6a56ddd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion KSHObjcUML/KSHObjcUML.m
Expand Up @@ -57,7 +57,8 @@ - (NSString *)projectName
{
NSString *tempProjectName = [VWKProject projectForKeyWindow].projectOriginalName;
if (tempProjectName) {
_projectName = tempProjectName;
// When the project name contains “ ” replace to "_"
_projectName = [tempProjectName stringByReplacingOccurrencesOfString:@" " withString:@"_"];
}
return _projectName;
}
Expand Down

0 comments on commit 6a56ddd

Please sign in to comment.