Show
Ignore:
Timestamp:
08/10/07 21:51:05 (5 years ago)
Author:
trivoallan
Message:

cleverbox :

fixes #13

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • cleverbox/trunk/cleverbox/upgrades/upgrades.py

    r156 r157  
    11from pkg_resources import parse_version 
    22 
     3 
    34def do_upgrade_1(envname, env_version): 
    4     if parse_version(env_version) >= parse_version(0.4): 
    5         pass 
    6     else: 
    7         print "upgrade 1 !" 
     5    if parse_version(env_version) < parse_version('0.4'): 
     6        print "It is not possible to upgrade cleverbox instances created with Cleverbox prior to 0.4" 
     7        print "It was not even a public release !" 
     8        print "Your only choice left is to pay big money for Clever Age (http://www.clever-age.com) consultants to make a manual migration." 
     9