Example #1
0
 def get_steam_config(self):
     if not self.steam_path:
         return
     steam_path = os.path.dirname(self.steam_path)
     return read_config(steam_path)
Example #2
0
 def get_steam_config(self):
     if not self.game_path:
         return
     return read_config(self.game_path)
Example #3
0
 def get_steam_config(self):
     """Return the "Steam" part of Steam's config.vfd as a dict"""
     steam_data_dir = self.steam_data_dir
     if not steam_data_dir:
         return
     return read_config(steam_data_dir)
Example #4
0
 def steam_config(self):
     """Return the "Steam" part of Steam's config.vfd as a dict"""
     if not self.get_steam_path():
         return
     steam_path = os.path.dirname(self.get_steam_path())
     return read_config(steam_path)
Example #5
0
 def steam_config(self):
     """Return the "Steam" part of Steam's config.vdf as a dict."""
     if not self.steam_data_dir:
         return
     return read_config(self.steam_data_dir)
Example #6
0
 def get_steam_config(self):
     return read_config(self.get_game_path())
Example #7
0
 def steam_config(self):
     """Return the "Steam" part of Steam's config.vdf as a dict"""
     if not self.steam_data_dir:
         return
     return read_config(self.steam_data_dir)
Example #8
0
 def get_steam_config(self):
     """Return the "Steam" part of Steam's config.vfd as a dict"""
     steam_data_dir = self.steam_data_dir
     if not steam_data_dir:
         return
     return read_config(steam_data_dir)
Example #9
0
 def get_steam_config(self):
     if not self.steam_path:
         return
     steam_path = os.path.dirname(self.steam_path)
     return read_config(steam_path)
Example #10
0
 def steam_config(self):
     """Return the "Steam" part of Steam's config.vfd as a dict"""
     if not self.get_steam_path():
         return
     steam_path = os.path.dirname(self.get_steam_path())
     return read_config(steam_path)
Example #11
0
 def get_steam_config(self):
     if not self.default_path:
         return
     return read_config(self.default_path)