Esempio n. 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)
Esempio n. 2
0
 def get_steam_config(self):
     if not self.game_path:
         return
     return read_config(self.game_path)
Esempio n. 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)
Esempio n. 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)
Esempio n. 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)
Esempio n. 6
0
 def get_steam_config(self):
     return read_config(self.get_game_path())
Esempio n. 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)
Esempio n. 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)
Esempio n. 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)
Esempio n. 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)
Esempio n. 11
0
 def get_steam_config(self):
     if not self.default_path:
         return
     return read_config(self.default_path)