changeset 59:19d714ee9941

gfetch should access repo when printing, not dest_repo
author Chris Wanstrath <chris@ozmm.org>
date Tue, 28 Apr 2009 17:50:50 -0700
parents c79741c05fd8
children 05a96f7750ad
files __init__.py
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/__init__.py
+++ b/__init__.py
@@ -73,10 +73,10 @@
     repo.ui.status(_("clearing out the git cache data\n"))
     git = GitHandler(repo, ui)
     git.clear()
-    
+
 def gfetch(ui, repo):
-    dest_repo.ui.status(_("pulling from git url\n"))
-           
+    repo.ui.status(_("pulling from git url\n"))
+
 commands.norepo += " gclone"
 cmdtable = {
   "gclone":