[Core] Use single underscore for private methods

This commit is contained in:
Calum Lind 2017-01-12 15:33:59 +00:00
parent 4caf05c092
commit 93898d6475
1 changed files with 3 additions and 3 deletions

View File

@ -178,7 +178,7 @@ class Core(component.Component):
self.session_rates_timer.stop() self.session_rates_timer.stop()
# Save the libtorrent session state # Save the libtorrent session state
self.__save_session_state() self._save_session_state()
# We stored a copy of the old interface value # We stored a copy of the old interface value
if self.__old_interface: if self.__old_interface:
@ -202,7 +202,7 @@ class Core(component.Component):
""" """
self.session.apply_settings(settings) self.session.apply_settings(settings)
def __save_session_state(self): def _save_session_state(self):
"""Saves the libtorrent session state""" """Saves the libtorrent session state"""
filename = 'session.state' filename = 'session.state'
filepath = get_config_dir(filename) filepath = get_config_dir(filename)
@ -229,7 +229,7 @@ class Core(component.Component):
log.info('Restoring backup of %s from: %s', filename, filepath_bak) log.info('Restoring backup of %s from: %s', filename, filepath_bak)
shutil.move(filepath_bak, filepath) shutil.move(filepath_bak, filepath)
def __load_session_state(self): def _load_session_state(self):
"""Loads the libtorrent session state """Loads the libtorrent session state
Returns: Returns: