From 70670586e082a9352c3bebe4fb8c17068dd39b4c Mon Sep 17 00:00:00 2001 From: Michael Goerz Date: Sun, 6 Apr 2014 17:06:06 +0200 Subject: [PATCH] Fixed undefined variable 'path' in Reference --- git/refs/reference.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/refs/reference.py b/git/refs/reference.py index 8cc577a87..09312f70d 100644 --- a/git/refs/reference.py +++ b/git/refs/reference.py @@ -18,7 +18,7 @@ def require_remote_ref_path(func): """A decorator raising a TypeError if we are not a valid remote, based on the path""" def wrapper(self, *args): if not self.path.startswith(self._remote_common_path_default + "/"): - raise ValueError("ref path does not point to a remote reference: %s" % path) + raise ValueError("ref path does not point to a remote reference: %s" % self.path) return func(self, *args) #END wrapper wrapper.__name__ = func.__name__