Ticket #7906: 7906.diff

File 7906.diff, 555 bytes (added by CHasenpflug, 16 years ago)
  • tests/regressiontests/admin_scripts/tests.py

     
    5353        base_dir = os.path.dirname(project_dir)
    5454       
    5555        # Build the command line
    56         cmd = 'python "%s"' % script
     56        cmd = '%s "%s"' % (sys.executable, script)
    5757        cmd += ''.join([' %s' % arg for arg in args])
    5858       
    5959        # Remember the old environment
Back to Top