aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/deb/dscfile.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2013-08-28 19:30:12 +0200
committerGuido Günther <agx@sigxcpu.org>2013-08-28 19:30:12 +0200
commitc9d3d93d28f2a1f839770672f5846115d8d0e3c3 (patch)
tree2b0415593a8ad00a6110134dbdbaee7046481c01 /gbp/deb/dscfile.py
parent8f073ebccd35f331981c8e2a396c0999de25a0b2 (diff)
Use open() instead of file()
since the later doesn't exist in python3
Diffstat (limited to 'gbp/deb/dscfile.py')
-rw-r--r--gbp/deb/dscfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/deb/dscfile.py b/gbp/deb/dscfile.py
index abaf6901..e2492dcc 100644
--- a/gbp/deb/dscfile.py
+++ b/gbp/deb/dscfile.py
@@ -49,7 +49,7 @@ class DscFile(object):
self.native = False
self.dscfile = os.path.abspath(dscfile)
- f = file(self.dscfile)
+ f = open(self.dscfile)
fromdir = os.path.dirname(os.path.abspath(dscfile))
for line in f:
m = self.version_re.match(line)