##// END OF EJS Templates
Bug fixed in jrodata: Error working with more than one branch. When a value is updated in a branch this value is modified in every other branch because variables are references.
Bug fixed in jrodata: Error working with more than one branch. When a value is updated in a branch this value is modified in every other branch because variables are references.

File last commit:

r577:bea3bacb993a
r757:c5bcb39af329
Show More
ftp.py
21 lines | 422 B | text/x-python | PythonLexer
# -*- coding: utf-8 -*-
"""
Module implementing Ftp.
"""
from PyQt4.QtGui import QMainWindow
from PyQt4.QtCore import pyqtSignature
from schainpy.gui.viewer.ftp import Ui_Ftp
class Ftp(QMainWindow, Ui_MainWindow):
"""
Class documentation goes here.
"""
def __init__(self, parent = None):
"""
Constructor
"""
QMainWindow.__init__(self, parent)
self.setupUi(self)