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