From e528907257ce0fb5b990cbaa7ed644ceb7085836 Mon Sep 17 00:00:00 2001
From: Fredrik Unger <fred@tree.se>
Date: Sun, 28 Oct 2012 08:12:41 +0100
Subject: [PATCH] Refactoring const to constants, to provide for lxml docbook
 namespaces.

---
 treecutter/{const.py => constants.py} | 0
 treecutter/directory.py               | 2 +-
 treecutter/page.py                    | 2 +-
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename treecutter/{const.py => constants.py} (100%)

diff --git a/treecutter/const.py b/treecutter/constants.py
similarity index 100%
rename from treecutter/const.py
rename to treecutter/constants.py
diff --git a/treecutter/directory.py b/treecutter/directory.py
index 0c633a7..dc60c37 100644
--- a/treecutter/directory.py
+++ b/treecutter/directory.py
@@ -2,7 +2,7 @@
 import os
 import fnmatch
 from amara import bindery
-import treecutter.const as const
+import treecutter.constants as const
 
 class Directory():
     """Class containing the state of the directory with articles"""
diff --git a/treecutter/page.py b/treecutter/page.py
index 1cb2baf..54ed957 100644
--- a/treecutter/page.py
+++ b/treecutter/page.py
@@ -7,7 +7,7 @@ from amara.xslt import transform
 from Cheetah.Template import Template
 from pkg_resources import resource_filename, resource_listdir
 from time import time
-import treecutter.const as const
+import treecutter.constants as const
 from treecutter.tools import mkdir_p
 
 class Page():
-- 
2.30.2