@@ -35,7 +35,7 @@ class Repo():
self.remote = remote
self.path = path
self.base = base
-
+
@property
def origin(self):
return f"{self.remote}:{self.path}"
@@ -69,7 +69,7 @@ class Repo():
def fetch(self):
proc = run(["git","fetch","-p","origin","refs/*:refs/*"], cwd=self.local_path)
if not proc.returncode == 0:
- print(f"Error: {proc}, {local_repo}")
+ print(f"Error: {proc}, {self.local_path}")
_rm(self.local_path)
def init(self):