Minor problem.

This commit is contained in:
Gaetan Delannay 2010-02-04 14:41:51 +01:00
parent 160c4960da
commit 50619f28c0
2 changed files with 3 additions and 3 deletions

View file

@ -10,5 +10,5 @@ def versionIsGreaterThanOrEquals(version):
return True
else:
paramVersion = [int(i) for i in version.split('.')]
currentVersion = (int(i) for i in appy.version.short.split('.'))
currentVersion = [int(i) for i in appy.version.short.split('.')]
return currentVersion >= paramVersion

View file

@ -1,5 +1,5 @@
0.5.0 (2010-01-29)
- Lots of appy.gen improvements due to the development of a big project with the framework.
0.5.1 (2010-02-02)
- Bugfixes (encoding problems) in Python-to-XML marshaller.
0.4.1 (2009-11-03)
- Ajax framework within appy.gen