diff options
author | Sean Finney <seanius@seanius.net> | 2009-11-29 14:52:01 +0100 |
---|---|---|
committer | Sean Finney <seanius@seanius.net> | 2009-11-29 14:52:01 +0100 |
commit | f73cb5034d1ff20a94f9cc69d375d3d4664bca24 (patch) | |
tree | 4d6568e1f39033ba4c1042e2afee04ed18c9fb22 | |
parent | 0013ff6ecdac75562dda62bf537bd093e6011c45 (diff) | |
download | patch-tracker-f73cb5034d1ff20a94f9cc69d375d3d4664bca24.tar.gz |
remove unused/obsolete config output_dir
-rwxr-xr-x | gen-patch-info.py | 5 | ||||
-rwxr-xr-x | patchtracker/Conf.py | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/gen-patch-info.py b/gen-patch-info.py index ea9cdb7..fe69bf4 100755 --- a/gen-patch-info.py +++ b/gen-patch-info.py @@ -37,11 +37,6 @@ if __name__ == '__main__': Conf.archive_root,)) a = Archive(Conf.archive_root, suitefilter=suites, pkgfilter=packages) - try: - os.mkdir(Conf.output_dir) - except OSError, e: - if e.errno != errno.EEXIST: - raise e pts_idx = PtsIndexFile() diff --git a/patchtracker/Conf.py b/patchtracker/Conf.py index 4fbc7c1..4f21621 100755 --- a/patchtracker/Conf.py +++ b/patchtracker/Conf.py @@ -1,6 +1,5 @@ archive_root = '/scratch/debian-archive/debian' archive_root_url = 'ftp://ftp.se.debian.org/debian' -output_dir = '/scratch/patches' template_dir = './templates' static_dir = './static' #root_url = 'http://people.debian.org/~seanius/pts/patches' |