Oops, missing self in bunch of calls... been too long since writing Python ;)
authorPanu Matilainen <pmatilai@redhat.com>
Fri, 2 Oct 2009 18:14:19 +0000 (21:14 +0300)
committerPanu Matilainen <pmatilai@redhat.com>
Fri, 2 Oct 2009 18:14:19 +0000 (21:14 +0300)
python/rpm/transaction.py

index 4e8711e..6c64686 100644 (file)
@@ -10,22 +10,22 @@ class TransactionSet(_rpm.ts):
         return oval
         
     def setVSFlags(self, flags):
-        return _wrapSetGet('_vsflags', flags)
+        return self._wrapSetGet('_vsflags', flags)
 
     def getVSFlags(self):
         return self._vsflags
 
     def setColor(self, color):
-        return _wrapSetGet('_color', color)
+        return self._wrapSetGet('_color', color)
 
     def setPrefColor(self, color):
-        return _wrapSetGet('_prefcolor', color)
+        return self._wrapSetGet('_prefcolor', color)
 
     def setFlags(self, flags):
-        return _wrapSetGet('_flags', flags)
+        return self._wrapSetGet('_flags', flags)
 
     def setProbFilter(self, ignoreSet):
-        return _wrapSetGet('_probFilter', ignoreSet)
+        return self._wrapSetGet('_probFilter', ignoreSet)
 
     def parseSpec(self, specfile):
         import _rpmb