Roundup Tracker - Issues

Issue 447671

classification
roundup-admin try to call invalid func
Type: Severity: normal
Components: Installation Versions:
process
Status: closed fixed
:
: richard : richard
Priority: normal :

Created on 2001-08-03 21:09 by anonymous, last changed 2001-08-04 22:44 by richard.

Messages
msg3 Author: [hidden] (anonymous) Date: 2001-08-03 21:09
Line 53 of roundup-admin should call 
imp.load_package, instead of the invalid loa_package
The traceback is below. It also would be nice to have 
better installation docs, I coun't put the standalone 
web server to run. I think I'll wait for a latter 
version.



/u/install/source/roundup-0.2.5 > roundup-admin init
Enter instance home: /web/bugs
Templates: classic, extended
Select template [classic]: extended
Back ends: anydbm, bsddb
Select backend [anydbm]: bsddb
Admin Password:
       Confirm:
Traceback (most recent call last):
  File "/usr/local/bin/roundup-admin", line 404, in ?
    sys.exit(main())
  File "/usr/local/bin/roundup-admin", line 375, in 
main
    return do_init(instance_home, args)
  File "/usr/local/bin/roundup-admin", line 124, in 
do_init
    init.init(instance_home, template, backend, 
adminpw)
  File 
"/usr/local/lib/python2.1/site-packages/roundup/init.py", 
line 53, in init
    instance = imp.loa_package('instance', 
instance_home)
AttributeError: 'imp' module has no attribute 
'loa_package'
msg4 Author: [hidden] (richard) Date: 2001-08-04 22:44
Logged In: YES 
user_id=6405

Fixed in cvs - will be fixed in the 0.2.6 release. For a 
simple change, just edit roundup/init.py and fix the 
loa_package function call to be load_package.
History
Date User Action Args
2001-08-03 21:09:04anonymouscreate