Show
Ignore:
Timestamp:
05/26/08 08:31:26 (6 months ago)
Author:
robert_martin
Message:

Bug fix for Ticket #3063. Groups dictionary now instatiated before the conditional in
_get_groups_and_members.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • finegrainedpageauthzeditorplugin/0.11/page_authz_policy_editor/pape_admin.py

    r3629 r3719  
    8282    def _get_groups_and_members(self): 
    8383        group_file_name = self.config.get('account-manager', 'group_file') 
     84        groups_dict = dict() 
    8485        if os.path.exists(group_file_name): 
    8586            group_file = file(group_file_name) 
    8687            try: 
    87                 groups_dict = dict() 
    8888                for group_line in group_file: 
    8989                    group = group_line.strip()