From c7d62396bf3420a87ce0cd7c319d2566f9446ed3 Mon Sep 17 00:00:00 2001 From: Panu Matilainen Date: Fri, 2 Oct 2009 21:14:19 +0300 Subject: [PATCH] Oops, missing self in bunch of calls... been too long since writing Python ;) --- python/rpm/transaction.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/python/rpm/transaction.py b/python/rpm/transaction.py index 4e8711e..6c64686 100644 --- a/python/rpm/transaction.py +++ b/python/rpm/transaction.py @@ -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 -- 2.7.4