From: W. Trevor King Date: Thu, 13 May 2010 11:33:08 +0000 (-0400) Subject: Actually set self.path in hooke.playlist.FilePlaylist.set_path X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5c9cff3fdd84cc3e496bce796425556bc4b2be00;p=hooke.git Actually set self.path in hooke.playlist.FilePlaylist.set_path --- diff --git a/hooke/playlist.py b/hooke/playlist.py index 7e76c93..b073387 100644 --- a/hooke/playlist.py +++ b/hooke/playlist.py @@ -83,6 +83,7 @@ class FilePlaylist (Playlist): if path != None: if not path.endswith('.hkp'): path += '.hkp' + self.path = path if self.name == None: name = os.path.basename(path)