Skip to content

Commit a1b9e4e

Browse files
committed
Make the test config use relative paths
1 parent 44a8595 commit a1b9e4e

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
/_cache
55
/_output
66
/.venv
7+
/data

code/python/config.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ owner_email = webmaster@python.org
1313

1414
# cache_directory: Where cached feeds are stored
1515
# log_level: One of DEBUG, INFO, WARNING, ERROR or CRITICAL
16-
cache_directory = /data/planet/cache
16+
cache_directory = ./data/planet/cache
1717
log_level = DEBUG
1818

1919
# template_files: Space-separated list of output template files
@@ -25,7 +25,7 @@ template_files = examples/index.html.tmpl examples/rss20.xml.tmpl examples/rss10
2525
# days_per_page: How many complete days of posts to put on each page
2626
# This is the absolute, hard limit (over the item limit)
2727
# date_format: strftime format for the default 'date' template variable
28-
output_dir = /data/planet/output
28+
output_dir = ./data/planet/output
2929
items_per_page = 60
3030
days_per_page = 0
3131
date_format = %B %d, %Y %I:%M %p

0 commit comments

Comments
 (0)