diff options
Diffstat (limited to 'subcmds/init.py')
-rw-r--r-- | subcmds/init.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/init.py b/subcmds/init.py index cced44d5..e4df6b37 100644 --- a/subcmds/init.py +++ b/subcmds/init.py | |||
@@ -241,7 +241,7 @@ to update the working directory files. | |||
241 | if current_dir != self.manifest.topdir: | 241 | if current_dir != self.manifest.topdir: |
242 | print('If this is not the directory in which you want to initialize ' | 242 | print('If this is not the directory in which you want to initialize ' |
243 | 'repo, please run:') | 243 | 'repo, please run:') |
244 | print(' rm -r %s/.repo' % self.manifest.topdir) | 244 | print(' rm -r %s' % os.path.join(self.manifest.topdir, '.repo')) |
245 | print('and try again.') | 245 | print('and try again.') |
246 | 246 | ||
247 | def ValidateOptions(self, opt, args): | 247 | def ValidateOptions(self, opt, args): |