Skip to content

Commit

Permalink
Fix error "zero length field name in format" for python 2.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsuttor committed Sep 2, 2014
1 parent 440a51b commit d676680
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES.txt
Expand Up @@ -19,6 +19,9 @@ Changelog
page) for a view with this field.
[bsuttor]

- Fix error "zero length field name in format" for python 2.6.
[bsuttor]


1.0.11 (2013-08-13)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion plone/app/collection/tests/test_robot.py
Expand Up @@ -14,7 +14,7 @@ def test_suite():
current_dir = os.path.abspath(os.path.dirname(__file__))
robot_dir = os.path.join(current_dir, 'robot')
robot_tests = [
'robot/{}'.format(doc) for doc in os.listdir(robot_dir) if doc.endswith('.robot')
'robot/{0}'.format(doc) for doc in os.listdir(robot_dir) if doc.endswith('.robot')
]
for test in robot_tests:
suite.addTests([
Expand Down

0 comments on commit d676680

Please sign in to comment.