Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add proper print_functions import #171

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cob_command_gui/src/knoeppkes.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
import os
import sys
import signal
from __future__ import print_function

import rospy
import roslib
Expand Down
2 changes: 1 addition & 1 deletion cob_monitoring/src/cpu_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
##\author Kevin Watts
# This file has been copied from https://github.com/PR2/pr2_computer_monitor in order to support this feature for indigo indepenendly from PR2 dependencies

from __future__ import with_statement
from __future__ import with_statement, print_function

import traceback
import threading
Expand Down
2 changes: 1 addition & 1 deletion cob_monitoring/src/hd_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
##\author Kevin Watts
# This file has been copied from https://github.com/PR2/pr2_computer_monitor in order to support this feature for indigo indepenendly from PR2 dependencies

from __future__ import with_statement
from __future__ import with_statement, print_function

import traceback
import threading
Expand Down
2 changes: 1 addition & 1 deletion cob_monitoring/src/wifi_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
##\brief Republishes the data from ddwrt/accesspoint onto diagnostics
# This file has been copied from https://github.com/PR2/pr2_computer_monitor in order to support this feature for indigo indepenendly from PR2 dependencies

from __future__ import with_statement
from __future__ import with_statement, print_function

import threading
import sys
Expand Down