Ignore:
Timestamp:
09/03/09 15:15:48 (15 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready to Release: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: No

Module(s): Module Names change impacts.

Description: Describe your changes here...

Bug fix.

asaplog.push( msg ) in the except section is not correct.
I have modified it to asaplog.push( msg.message ).


File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/alma/python/scantable.py

    r1625 r1627  
    765765                #print msg
    766766                print_log()
    767                 asaplog.push( msg )
     767                asaplog.push( msg.message )
    768768                print_log( 'ERROR' )
    769769            else:
     
    814814                #print msg
    815815                print_log()
    816                 asaplog.push( msg )
     816                asaplog.push( msg.message )
    817817                print_log( 'ERROR' )
    818818                return
     
    848848                #print msg
    849849                print_log()
    850                 asaplog.push( msg )
     850                asaplog.push( msg.message )
    851851                print_log( 'ERROR' )
    852852                return
     
    12301230                #print msg
    12311231                print_log()
    1232                 asaplog.push( msg )
     1232                asaplog.push( msg.message )
    12331233                print_log( 'ERROR' )
    12341234                return
     
    14571457                #print msg
    14581458                print_log()
    1459                 asaplog.push( msg )
     1459                asaplog.push( msg.message )
    14601460                print_log( 'ERROR' )
    14611461                return
     
    15371537                #print msg
    15381538                print_log()
    1539                 asaplog.push( msg )
     1539                asaplog.push( msg.message )
    15401540                print_log( 'ERROR' )
    15411541                return
Note: See TracChangeset for help on using the changeset viewer.