diff options
author | Papoteur <papoteur@mageialinux-online.org> | 2015-09-02 20:33:19 +0200 |
---|---|---|
committer | Papoteur <papoteur@mageialinux-online.org> | 2015-09-02 20:33:19 +0200 |
commit | 65d601995e975ac6c075f7dcb5da0a5de1fbee40 (patch) | |
tree | 729795cec11d6c97420fd58792df8280b979dd92 /plasma/applet/contents | |
parent | 32ccd77cd9b6d8e61a5cbbbdbd78a6b4ce174d21 (diff) | |
download | net_monitor-65d601995e975ac6c075f7dcb5da0a5de1fbee40.tar net_monitor-65d601995e975ac6c075f7dcb5da0a5de1fbee40.tar.gz net_monitor-65d601995e975ac6c075f7dcb5da0a5de1fbee40.tar.bz2 net_monitor-65d601995e975ac6c075f7dcb5da0a5de1fbee40.tar.xz net_monitor-65d601995e975ac6c075f7dcb5da0a5de1fbee40.zip |
Applying 2to3-3.4 conversion.
Diffstat (limited to 'plasma/applet/contents')
-rw-r--r-- | plasma/applet/contents/code/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plasma/applet/contents/code/main.py b/plasma/applet/contents/code/main.py index 4d2b44a..bb162b9 100644 --- a/plasma/applet/contents/code/main.py +++ b/plasma/applet/contents/code/main.py @@ -52,7 +52,7 @@ class NetMonitor(plasmascript.Applet): """Got something from data source""" iface = str(sourceName) if iface not in self.widgets: - print "Error: data for %s not available yet" % iface + print("Error: data for %s not available yet" % iface) return widget = self.widgets[iface] data_in = int(data[QString("data_in")]) |