When reising an error, print the error too.

bump for release
This commit is contained in:
Jesse Keating 2007-07-28 11:02:20 -04:00 committed by Jesse Keating
parent 36c629a262
commit 829f90aa5f
4 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,6 @@
* Sat Jul 28 2007 Jesse Keating <jkeating@redhat.com>
- Split the createrepo call into it's own function
- When raising an error, print the error too.
* Tue Jul 24 2007 Jesse Keating <jkeating@redhat.com>
- Add a few more desktopy things to manifest

View File

@ -1,7 +1,7 @@
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
Name: pungi
Version: 0.3.9
Version: 0.4.0
Release: 1%{?dist}
Summary: Distribution compose tool
@ -46,6 +46,11 @@ rm -rf $RPM_BUILD_ROOT
%changelog
* Sat Jul 28 2007 Jesse Keating <jkeating@redhat.com> - 0.4.0-1
- split createrepo call to it's own function. This enables rawhide
composes to happen once again. Also breaks API.
- When raising an error, print the error too
* Tue Jul 24 2007 Jesse Keating <jkeating@redhat.com> - 0.3.9-1
- Add a few more desktopy things to manifest
- Rename f7 files to f8; set up config files for f8test1

View File

@ -77,7 +77,7 @@ class Pungi:
if p1.returncode != 0:
log.error("Got an error from %s" % command[0])
log.error(err)
raise OSError, "Got an error from %s" % command[0]
raise OSError, "Got an error from %s: %s" % (command[0], err)
def doCreaterepo(self):
"""Run createrepo to generate repodata in the tree."""

View File

@ -2,7 +2,7 @@ from distutils.core import setup
import glob
setup(name='pungi',
version='0.3.9',
version='0.4.0',
description='Distribution compose tool',
author='Jesse Keating',
author_email='jkeating@redhat.com',