Changeset 5c244c in indico


Ignore:
Timestamp:
04/17/12 17:40:58 (14 months ago)
Author:
Jose Benito <jose.benito.gonzalez@…>
Branches:
master, hello-world-walkthrough, ipv6, v0.98-series, v0.98.2, v0.98.3, v0.99, b8c30da8ebdbdcbd675a873997cc3e95f567de49, 4287315ec967a3da168d83963c14001db8487d53
Children:
f56594
Parents:
fa3c62
Message:

[FIX] Minor RB bug with Location

File:
1 edited

Legend:

Unmodified
Added
Removed
  • indico/MaKaC/rb_room.py

    rf777b0 r5c244c  
    617617        if self.id == None or self.locationName == None: 
    618618            return None 
    619         return RoomGUID( Location.parse( self.locationName ), self.id ) 
     619        if Location.parse( self.locationName ): 
     620            return RoomGUID( Location.parse( self.locationName ), self.id ) 
     621        return None 
    620622 
    621623    def _getName( self ): 
Note: See TracChangeset for help on using the changeset viewer.