From: W. Trevor King Date: Fri, 11 Nov 2011 11:51:47 +0000 (-0500) Subject: Expand ~ in the glob path of 'glob curves to playlist'. X-Git-Url: http://git.tremily.us/?p=hooke.git;a=commitdiff_plain;h=38fd060877b83459eb73fd494041377085e91677 Expand ~ in the glob path of 'glob curves to playlist'. --- diff --git a/hooke/plugin/playlist.py b/hooke/plugin/playlist.py index b5a2f2a..88608d6 100644 --- a/hooke/plugin/playlist.py +++ b/hooke/plugin/playlist.py @@ -322,7 +322,7 @@ Additional information for the input :class:`hooke.curve.Curve`. def _run(self, hooke, inqueue, outqueue, params): p = self._playlist(hooke, params) - for path in sorted(glob.glob(params['input'])): + for path in sorted(glob.glob(os.path.expanduser(params['input']))): try: p.append_curve_by_path(path, params['info'], hooke=hooke) except NotRecognized, e: