Skip to content

Commit

Permalink
merged intermediate changes from the plone-3.0 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
witsch committed Aug 16, 2007
1 parent 94cf235 commit cbef70d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
CHANGES
=======

five.customerize 0.1.3 (2007/07/08)
---------------------------------

Fix in setup.py


five.customerize 0.1.2 (2007/05/04)
---------------------------------

Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from setuptools import setup

setup(name = 'five.customerize',
version = '0.1.2',
version = '0.1.3',
description = 'TTW customization of template-based Zope 3 views',
keywords = 'zope3 views templates customization ttw',
author = 'Zope Corporation and Contributors',
Expand All @@ -30,6 +30,9 @@
include_package_data = True,
platforms = 'Any',
zip_safe = False,
install_requires=[
'setuptools'
],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
Expand Down
2 changes: 1 addition & 1 deletion src/five/customerize/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def mangleAbsoluteFilename(filename):
try:
zope.dottedname.resolve.resolve('.'.join(pieces))
break
except ImportError:
except (ImportError, ValueError):
pieces = pieces[1:]
if not pieces:
return filename
Expand Down
2 changes: 1 addition & 1 deletion src/five/customerize/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.2
0.1.3

0 comments on commit cbef70d

Please sign in to comment.