Skip to content

Commit

Permalink
Don't call nonexistent property setter
Browse files Browse the repository at this point in the history
  • Loading branch information
lpsinger committed Jun 4, 2014
1 parent a3735b3 commit f4801e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pykg_config/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def load_from_pc_file(self, filename, global_variables):
"""Load data from a package config file and process it."""
self.raw_vars, self.variables, \
self.raw_props = read_pc_file(filename, global_variables)
self.filename = filename
self._filename = filename
self._process_props(global_variables)

def _process_props(self, global_variables):
Expand Down

0 comments on commit f4801e2

Please sign in to comment.