Fixed a bug in batchcommand that caused crashes. Resolves issue 153.

This commit is contained in:
Griatch 2011-04-09 14:48:57 +00:00
parent 6c53ec2bdb
commit c81d238b0c
2 changed files with 6 additions and 17 deletions

View file

@ -367,7 +367,7 @@ class CmdSetHandler(object):
"""
self.cmdset_stack = [self.cmdset_stack[0]]
self.mergetype_stack = [self.cmdset_stack[0].mergetype]
self.permanent_paths[0] = [self.permanent_paths[0]]
self.permanent_paths = [self.permanent_paths[0]]
self.obj.cmdset_storage = self.permanent_paths
self.update()