Changeset 341 for cleverbox/branches

Show
Ignore:
Timestamp:
05/03/08 10:18:20 (2 years ago)
Author:
trivoallan
Message:

arg

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • cleverbox/branches/0.4/cleverbox/upgrades/upgrades.py

    r329 r341  
    4545 
    4646    print "Done upgrading" 
     47 
     48def do_upgrade_4(envname, env_version): 
     49    import os 
     50 
     51    print "Upgrading to cleverbox-0.4.4" 
     52 
     53    f = open(os.path.join(envname, 'VERSION'), 'w') 
     54    f.write('0.4.4') 
     55    f.close() 
     56 
     57    print "Done upgrading"