aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/context.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2013-03-29 15:55:12 +0100
committerGuido Günther <agx@sigxcpu.org>2013-04-13 14:26:24 +0200
commita60f37dab018ee827aef631f0e1646e720194655 (patch)
tree78e4185d2a5ed9c58544aad4cd4360c6c6904793 /tests/context.py
parent8fd5ec31272984a7fcff628c50b4c22d7e4107ec (diff)
Introduce Source class
so we don't have to expose all the details of Debian's different files and conventions.
Diffstat (limited to 'tests/context.py')
-rw-r--r--tests/context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/context.py b/tests/context.py
index 22a9e29a..cc3e25df 100644
--- a/tests/context.py
+++ b/tests/context.py
@@ -29,7 +29,7 @@ def chdir(dir):
def new_tmpdir(name):
global _tmpdirs
prefix='gbp_%s_' % name
- tmpdir=TmpDir(prefix)
+ tmpdir = TmpDir(prefix)
_tmpdirs.append(tmpdir)
return tmpdir