diff options
author | Fahim | 2016-03-01 17:24:00 +0530 |
---|---|---|
committer | Fahim | 2016-03-01 17:24:00 +0530 |
commit | 9347ac2e7c7d7c0693cd85327297b519196dbb90 (patch) | |
tree | e296f8b423f063bef60cc6115f6d6b3adfe5e3c8 /src/configuration | |
parent | 44d403c92bf62a8885e2a2cddf2bd4019c5532b9 (diff) | |
download | eSim-9347ac2e7c7d7c0693cd85327297b519196dbb90.tar.gz eSim-9347ac2e7c7d7c0693cd85327297b519196dbb90.tar.bz2 eSim-9347ac2e7c7d7c0693cd85327297b519196dbb90.zip |
Remove all unwanted print command
Diffstat (limited to 'src/configuration')
-rw-r--r-- | src/configuration/Appconfig.py | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/src/configuration/Appconfig.py b/src/configuration/Appconfig.py index 0d3e0346..72510174 100644 --- a/src/configuration/Appconfig.py +++ b/src/configuration/Appconfig.py @@ -60,19 +60,16 @@ class Appconfig(QtGui.QWidget): self._app_heigth = 400 - def print_info(self, str): + def print_info(self, info): + self.noteArea['Note'].append('[INFO]: ' + info) - self.noteArea['Note'].append('[INFO]: ' + str) - - def print_warning(self, str): - - self.noteArea['Note'].append('[WARNING]: ' + str) + def print_warning(self, warning): + self.noteArea['Note'].append('[WARNING]: ' + warning) - def print_error(self, str): - - self.noteArea['Note'].append('[ERROR]: ' + str) + def print_error(self, error): + self.noteArea['Note'].append('[ERROR]: ' + error) |