summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2007-01-29 16:38:01 -0500
committerJim Meyering <jim@meyering.net>2007-01-29 16:38:01 -0500
commit1f99d876750f965f73f20c9ae15b25c84c23cce0 (patch)
treea62c29287a921d02e74a547957080264b4116c84
parent7e06026f9921914f17946517cd22f7f4f7bd8408 (diff)
downloadcobbler-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--CHANGELOG2
-rw-r--r--koan.spec4
-rwxr-xr-xkoan/app.py1
3 files changed, 4 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 2aa04801..ecd91fe9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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
diff --git a/koan.spec b/koan.spec
index 120a025b..34d8f32b 100644
--- a/koan.spec
+++ b/koan.spec
@@ -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