summaryrefslogtreecommitdiff
path: root/grc/gui/ActionHandler.py
diff options
context:
space:
mode:
authorSebastian Koslowski <koslowski@kit.edu>2014-08-23 19:54:41 +0200
committerSebastian Koslowski <koslowski@kit.edu>2014-08-26 13:14:21 +0200
commit4abbcf925525035414f03af5366e2eddd49e85f7 (patch)
tree360b58bbc639638a56f54b380f81e948a209e646 /grc/gui/ActionHandler.py
parenta8c8af1d032f5622168c3b2636800f1e6647267b (diff)
grc: moving xml pi into nested data
Diffstat (limited to 'grc/gui/ActionHandler.py')
-rw-r--r--grc/gui/ActionHandler.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/grc/gui/ActionHandler.py b/grc/gui/ActionHandler.py
index a8c91b4978..60fa07050d 100644
--- a/grc/gui/ActionHandler.py
+++ b/grc/gui/ActionHandler.py
@@ -449,8 +449,7 @@ class ActionHandler:
#otherwise try to save
else:
try:
- instructions = {'created': self.platform.get_version_short(), 'compatible': '3.6.1', 'locked': True}
- ParseXML.to_file_with_instructions(self.get_flow_graph().export_data(), self.get_page().get_file_path(), instructions)
+ ParseXML.to_file(self.get_flow_graph().export_data(), self.get_page().get_file_path())
self.get_flow_graph().grc_file_path = self.get_page().get_file_path()
self.get_page().set_saved(True)
except IOError: