From e9c618f5064f1ad3d5c4aa107bf53fe96fa97cb9 Mon Sep 17 00:00:00 2001 From: Alex Dedul Date: Sun, 15 Jul 2007 01:17:59 +0000 Subject: [PATCH] Minor changes. --- scripts/deluge | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/deluge b/scripts/deluge index 7c20a81cd..8fd3fa3cc 100755 --- a/scripts/deluge +++ b/scripts/deluge @@ -68,7 +68,7 @@ parser.add_option("--url", dest="url", help="Load a torrent from a URL", (options, args) = parser.parse_args() -def fix_old_persistence_state(): +def fix_old_persistent_state(): pstate_file_path = os.path.join(deluge.common.CONFIG_DIR, deluge.core.STATE_FILENAME) ## The persistent_state object moved from the deluge.deluge module to the @@ -108,7 +108,7 @@ Continuing...""" % pstate_file_path def start_deluge(): print "Starting new Deluge session..." - fix_old_persistence_state() + fix_old_persistent_state() interface = deluge.interface.DelugeGTK() add_args(interface)