Minor problem.
This commit is contained in:
parent
160c4960da
commit
50619f28c0
|
@ -10,5 +10,5 @@ def versionIsGreaterThanOrEquals(version):
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
paramVersion = [int(i) for i in version.split('.')]
|
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
|
return currentVersion >= paramVersion
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
0.5.0 (2010-01-29)
|
0.5.1 (2010-02-02)
|
||||||
- Lots of appy.gen improvements due to the development of a big project with the framework.
|
- Bugfixes (encoding problems) in Python-to-XML marshaller.
|
||||||
|
|
||||||
0.4.1 (2009-11-03)
|
0.4.1 (2009-11-03)
|
||||||
- Ajax framework within appy.gen
|
- Ajax framework within appy.gen
|
||||||
|
|
Loading…
Reference in a new issue