summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xwhatmaps/command.py2
-rw-r--r--whatmaps/process.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/whatmaps/command.py b/whatmaps/command.py
index 29a244f..6825f7e 100755
--- a/whatmaps/command.py
+++ b/whatmaps/command.py
@@ -96,7 +96,7 @@ def detect_distro():
def write_cmd_file(services, cmd_file, distro):
"Write out commands needed to restart the services to a file"
- out = file(cmd_file, 'w')
+ out = open(cmd_file, 'w')
print >>out, '#! /bin/sh'
for service in services:
logging.debug("Need to restart %s", service)
diff --git a/whatmaps/process.py b/whatmaps/process.py
index 3fe23f3..f3d5dcd 100644
--- a/whatmaps/process.py
+++ b/whatmaps/process.py
@@ -53,7 +53,7 @@ class Process(object):
def _read_maps(self):
"""Read the SOs from /proc/<pid>/maps"""
try:
- f = file(self._procpath('%d/maps' % self.pid))
+ f = open(self._procpath('%d/maps' % self.pid))
except IOError as e:
# ignore killed process
if e.errno != errno.ENOENT: