From 67599c9dac379ca54615eb061e1e224345207d78 Mon Sep 17 00:00:00 2001
From: Seblu <sebastien.luttringer@smartjog.com>
Date: Wed, 24 Aug 2011 17:45:18 +0200
Subject: [PATCH] fix typo in tarball.py

---
 installsystems/tarball.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/installsystems/tarball.py b/installsystems/tarball.py
index a9c5245..bfc89ed 100644
--- a/installsystems/tarball.py
+++ b/installsystems/tarball.py
@@ -40,7 +40,7 @@ class Tarball(tarfile.TarFile):
         # regexp matching
         if re_pattern is not None:
             return [ tpname for tpname in lorig
-                     if re.match(reg_pattern, tpname) ]
+                     if re.match(re_pattern, tpname) ]
         # globbing matching
         if glob_pattern is not None:
             return fnmatch.filter(lorig, glob_pattern)
-- 
GitLab