Skip to content

Commit

Permalink
Fixed copy call in gui/application.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rexissimus committed Jun 26, 2015
1 parent 50cc3bd commit f71e707
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vistrails/gui/application.py
Expand Up @@ -40,6 +40,7 @@
from __future__ import division

from ast import literal_eval
import copy
import os.path
import getpass
import re
Expand Down Expand Up @@ -772,7 +773,7 @@ def parse_input_args_from_other_instance(self, msg):
try:
# Execute using persistent configuration + new temp configuration
old_temp_conf = self.temp_configuration
self.startup.temp_configuration = self.configuration.__copy__()
self.startup.temp_configuration = copy.copy(self.configuration)
self.temp_configuration.update(conf_options)

interactive = not self.temp_configuration.check('batch')
Expand Down

0 comments on commit f71e707

Please sign in to comment.