cocoaTouch/SingleTeamViewController.m
changeset 3308 b6dcae4b6d2c
parent 3305 91074496d5c9
child 3312 6d8f1c76756d
--- a/cocoaTouch/SingleTeamViewController.m	Mon Apr 05 17:22:54 2010 +0000
+++ b/cocoaTouch/SingleTeamViewController.m	Tue Apr 06 02:39:06 2010 +0000
@@ -39,7 +39,7 @@
 - (void)viewWillAppear:(BOOL)animated {
     [super viewWillAppear:animated];
     NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
-    NSString *teamFile = [[NSString alloc] initWithFormat:@"%@Teams/%@.plist",[paths objectAtIndex:0],self.teamName];
+    NSString *teamFile = [[NSString alloc] initWithFormat:@"%@/Teams/%@.plist",[paths objectAtIndex:0],self.teamName];
     NSDictionary *teamDict = [[NSDictionary alloc] initWithContentsOfFile:teamFile];
     [teamFile release];