Skip to content

Commit

Permalink
Merge pull request #171 from ipa-fxm/python_exception_handling
Browse files Browse the repository at this point in the history
add proper print_functions import
  • Loading branch information
Florian Weisshardt authored Jan 25, 2017
2 parents 64032d2 + e7682c4 commit 499a4b8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
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

0 comments on commit 499a4b8

Please sign in to comment.