diff options
author | Michael DeHaan <mdehaan@redhat.com> | 2007-01-29 16:38:01 -0500 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-01-29 16:38:01 -0500 |
commit | 1f99d876750f965f73f20c9ae15b25c84c23cce0 (patch) | |
tree | a62c29287a921d02e74a547957080264b4116c84 | |
parent | 7e06026f9921914f17946517cd22f7f4f7bd8408 (diff) | |
download | cobbler-1f99d876750f965f73f20c9ae15b25c84c23cce0.tar.gz cobbler-1f99d876750f965f73f20c9ae15b25c84c23cce0.tar.xz cobbler-1f99d876750f965f73f20c9ae15b25c84c23cce0.zip |
Add traceback and decrease python requirement to 2.2 for RHEL3 support (tested, works).
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | koan.spec | 4 | ||||
-rwxr-xr-x | koan/app.py | 1 |
3 files changed, 4 insertions, 3 deletions
@@ -4,7 +4,7 @@ Detail of software changes that are not packaging related. These *should* correspond with a bump in the software version. This wasn't consistant for 0.1.X builds, though it will be in the future. -* Thr Jan 24 2006 Michael DeHaan <mdehaan@redhat.com> - 0.2.6-1 +* Thr Jan 24 2007 Michael DeHaan <mdehaan@redhat.com> - 0.2.6-1 - koan --list commands now sort output - Added warning text when koan fails to import virtualization modules @@ -9,7 +9,7 @@ License: GPL Group: Applications/System Requires: mkinitrd Requires: syslinux -Requires: python >= 2.3 +Requires: python >= 2.2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot BuildArch: noarch ExcludeArch: ppc @@ -48,7 +48,7 @@ test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT %changelog -* Thu Jan 24 2006 - Michael DeHaan <mdehaan@redhat.com> - 0.2.6-1 +* Thu Jan 24 2007 - Michael DeHaan <mdehaan@redhat.com> - 0.2.6-1 - Upstream changes (see CHANGELOG) * Fri Dec 08 2006 - Michael DeHaan <mdehaan@redhat.com> - 0.2.5-1 diff --git a/koan/app.py b/koan/app.py index 047d2815..69212261 100755 --- a/koan/app.py +++ b/koan/app.py @@ -285,6 +285,7 @@ class Koan: print "%s" % x return True except: + traceback.print_exc() raise InfoException, "couldn't access listing information" return False # shouldn't be here |