diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2011-11-10 10:05:55 +0100 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2011-11-10 10:05:55 +0100 |
| commit | 1948d5d03887eb81ea7797c0f23049ef6c3895ce (patch) | |
| tree | f8ed53ebfd639d1369075cc86c0f9cb58eb85100 /apt/cache.py | |
| parent | d7c8f470a236d70fa6ce8eb0e522702fee64ff5e (diff) | |
| download | python-apt-1948d5d03887eb81ea7797c0f23049ef6c3895ce.tar.gz | |
* apt/cache.py:
- remove "print" when creating dirs in apt.Cache(rootdir=dir),
thanks to Martin Pitt
Diffstat (limited to 'apt/cache.py')
| -rw-r--r-- | apt/cache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt/cache.py b/apt/cache.py index bab5c277..a4585277 100644 --- a/apt/cache.py +++ b/apt/cache.py @@ -111,7 +111,7 @@ class Cache(object): ] for d in dirs: if not os.path.exists(rootdir + d): - print "creating: ", rootdir + d + #print "creating: ", rootdir + d os.makedirs(rootdir + d) for f in files: if not os.path.exists(rootdir + f): |
