Minor problem.
This commit is contained in:
parent
160c4960da
commit
50619f28c0
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue