[yum-git] yum/depsolve.py yum/__init__.py yum.spec
Seth Vidal
skvidal at linux.duke.edu
Thu Mar 20 14:32:08 UTC 2008
yum.spec | 5 ++++-
yum/__init__.py | 2 +-
yum/depsolve.py | 4 ++--
3 files changed, 7 insertions(+), 4 deletions(-)
New commits:
commit 5c9785504b6c2d7c49176dcb1ececbc74747bf3e
Author: Seth Vidal <skvidal at fedoraproject.org>
Date: Thu Mar 20 10:27:27 2008 -0400
- bump ver for 3.2.13
- fix oddball tabs in yum/__init__.py
diff --git a/yum.spec b/yum.spec
index 98d4edc..3473037 100644
--- a/yum.spec
+++ b/yum.spec
@@ -1,6 +1,6 @@
Summary: RPM installer/updater
Name: yum
-Version: 3.2.12
+Version: 3.2.13
Release: 1
License: GPL
Group: System Environment/Base
@@ -98,6 +98,9 @@ exit 0
%{_mandir}/man*/yum-updatesd*
%changelog
+* Thu Mar 20 2008 Seth Vidal <skvidal at fedoraproject.org>
+- 3.2.13
+
* Mon Mar 3 2008 Seth Vidal <skvidal at fedoraproject.org>
- 3.2.12
diff --git a/yum/__init__.py b/yum/__init__.py
index 8144d16..7985d02 100644
--- a/yum/__init__.py
+++ b/yum/__init__.py
@@ -68,7 +68,7 @@ import string
from urlgrabber.grabber import default_grabber as urlgrab
-__version__ = '3.2.12'
+__version__ = '3.2.13'
class YumBase(depsolve.Depsolve):
"""This is a primary structure and base class. It houses the objects and
diff --git a/yum/depsolve.py b/yum/depsolve.py
index af42d52..2b33e5d 100644
--- a/yum/depsolve.py
+++ b/yum/depsolve.py
@@ -41,9 +41,9 @@ import warnings
warnings.simplefilter("ignore", Errors.YumFutureDeprecationWarning)
try:
- assert max(2, 4) == 4
+ assert max(2, 4) == 4
except:
- # Python-2.4.x doesn't have min/max ... *sigh*
+ # Python-2.4.x doesn't have min/max ... *sigh*
def min(x, *args):
for y in args:
if x > y: x = y
More information about the Yum-cvs-commits
mailing list