X-Git-Url: http://git.tremily.us/?p=hooke.git;a=blobdiff_plain;f=hooke%2Fplugin%2Fcommand_stack.py;h=af7549016c79dd90ca106e5baad2305124c85bc0;hp=59ca5ddbe79e98782ff5d60f3d038cf2293349cf;hb=56725ab3fbcd43c517ea7ebbed17f951ae736db8;hpb=fbb2899617a38afdf61408ee13b81fbf986a8013 diff --git a/hooke/plugin/command_stack.py b/hooke/plugin/command_stack.py index 59ca5dd..af75490 100644 --- a/hooke/plugin/command_stack.py +++ b/hooke/plugin/command_stack.py @@ -236,7 +236,8 @@ input command stack. If the command stack does not have an input file params['output'] = 'default' if params['output'] != None: params['output'] = os.path.join( - self.plugin.config['path'], params['output']) + os.path.expanduser(self.plugin.config['path']), + params['output']) return params class LoadCommand (CommandStackCommand): @@ -265,7 +266,8 @@ File name for the input command stack. params['input'] = 'default' if params['input'] != None: params['input'] = os.path.join( - self.plugin.config['path'], params['input']) + os.path.expanduser(self.plugin.config['path']), + params['input']) return params