aboutsummaryrefslogtreecommitdiffstats
path: root/minidinstall/DpkgControl.py
diff options
context:
space:
mode:
Diffstat (limited to 'minidinstall/DpkgControl.py')
-rwxr-xr-xminidinstall/DpkgControl.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/minidinstall/DpkgControl.py b/minidinstall/DpkgControl.py
index 38147c7..4bda8c5 100755
--- a/minidinstall/DpkgControl.py
+++ b/minidinstall/DpkgControl.py
@@ -50,7 +50,7 @@ class DpkgParagraph(DpkgOrderedDatalist):
value = None
while 1:
line = f.readline()
- if not line:
+ if not line:
return
# skip blank lines until we reach a paragraph
if line == '\n':
@@ -124,10 +124,10 @@ class DpkgSourceControl( DpkgControl ):
f = SignedFile(f)
self.source = self._load_one( f )
DpkgControl.load( self, f )
-
+
def __repr__( self ):
return self.source.__repr__() + "\n" + DpkgControl.__repr__( self )
-
+
def _store( self, f ):
"Write our control data to a file object"
self.source._store( f )