diff options
author | Dafydd Harries <daf@rhydd.org> | 2013-03-18 19:32:15 -0400 |
---|---|---|
committer | Dafydd Harries <daf@rhydd.org> | 2013-03-18 19:32:15 -0400 |
commit | 590f15910bf32957feacab33567e9ab91e6eaefb (patch) | |
tree | 209055377f031f0c1c9b349c6869e34c2e985f0a | |
parent | a51a40eaa0eab7ecc9522ce92624e31f80423aee (diff) |
add .wiki suffix to output files
-rw-r--r-- | export.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -247,7 +247,7 @@ def export(data, name): def filename(s): s_ = re.sub('[^A-Za-z0-9_+.-]', '_', s) assert s_, s - return s_ + return s_ + '.wiki' def output(path, xs): with open(path, 'w') as f: |