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