summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevan Franchini <twitch153@hotmail.com>2013-09-26 00:04:05 -0400
committerDevan Franchini <twitch153@hotmail.com>2013-09-26 00:04:05 -0400
commit6e1e2220cbbc91d48eabe5b0c416c7ecae6fa8a2 (patch)
tree61f9ead762f26878734b4e8d94779953f4939aa5
parentWebappConfig/content.py: Fixed inconsistent tab in file where create_md5() is... (diff)
downloadwebapp-config-6e1e2220cbbc91d48eabe5b0c416c7ecae6fa8a2.tar.gz
webapp-config-6e1e2220cbbc91d48eabe5b0c416c7ecae6fa8a2.tar.bz2
webapp-config-6e1e2220cbbc91d48eabe5b0c416c7ecae6fa8a2.zip
WebappConfig/content.py: returns value from create_md5 to prevent nulls.
-rw-r--r--WebappConfig/content.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebappConfig/content.py b/WebappConfig/content.py
index f9106ff..de65d1d 100644
--- a/WebappConfig/content.py
+++ b/WebappConfig/content.py
@@ -531,7 +531,7 @@ class Contents:
def file_md5(self, filename):
''' Return the md5 hash for the file content.'''
- create_md5(filename)
+ return create_md5(filename)
def file_time(self, filename):
''' Return the last modification time.'''