summaryrefslogtreecommitdiff
path: root/gbp/deb/source.py
diff options
context:
space:
mode:
Diffstat (limited to 'gbp/deb/source.py')
-rw-r--r--gbp/deb/source.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/deb/source.py b/gbp/deb/source.py
index 1e87312..c740361 100644
--- a/gbp/deb/source.py
+++ b/gbp/deb/source.py
@@ -32,7 +32,7 @@ class FileVfs(object):
def open(self, path, flags=None):
flags = flags or 'r'
- return file(os.path.join(self._dir, path), flags)
+ return open(os.path.join(self._dir, path), flags)
class DebianSourceError(Exception):
pass