Author: leidel
Date: Sun Jan 11 17:16:30 2009
New Revision: 50
Added:
trunk/mailer/
- copied from r49, /trunk/mailerdev/mailer/
Removed:
trunk/mailerdev/README
trunk/mailerdev/mailer/
Modified:
trunk/mailer/__init__.py
Log:
Moved the mailer app one level up
Modified: trunk/mailer/__init__.py
==============================================================================
--- /trunk/mailerdev/mailer/__init__.py (original)
+++ trunk/mailer/__init__.py Sun Jan 11 17:16:30 2009
@@ -1,6 +1,16 @@
from django.utils.encoding import force_unicode
from django.conf import settings
+VERSION = (0, 1, 0, "pre")
+
+def get_version():
+ if VERSION[3] != "final":
+ return "%s.%s.%s%s" % (VERSION[0], VERSION[1], VERSION[2],
VERSION[3])
+ else:
+ return "%s.%s.%s" % (VERSION[0], VERSION[1], VERSION[2])
+
+__version__ = get_version()
+
PRIORITY_MAPPING = {
"high": "1",
"medium": "2",
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---