summaryrefslogtreecommitdiffstats
path: root/module/gui/connector.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/gui/connector.py')
-rw-r--r--module/gui/connector.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/module/gui/connector.py b/module/gui/connector.py
index 4ac635200..e52cf42ff 100644
--- a/module/gui/connector.py
+++ b/module/gui/connector.py
@@ -304,3 +304,16 @@ class connector(QThread):
self.emit(SIGNAL("proxy_error"), "removeFile")
finally:
self.mutex.unlock()
+
+ def uploadContainer(self, filename, type, content):
+ """
+ upload a container
+ """
+ self.mutex.lock()
+ try:
+ self.proxy.upload_container(filename, type, content)
+ except:
+ self.emit(SIGNAL("proxy_error"), "uploadContainer")
+ finally:
+ self.mutex.unlock()
+