From 6f01d46f58fa5f6f3824dc90a64da80475853080 Mon Sep 17 00:00:00 2001 From: benoitc Date: Fri, 6 Aug 2010 08:00:55 +0200 Subject: [PATCH] by default no minotr tag if we aren't in a git repo --- gunicorn/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index 6bc04c60..250bedb4 100644 --- a/gunicorn/__init__.py +++ b/gunicorn/__init__.py @@ -8,7 +8,7 @@ import os if os.environ.get('release') != "true": - minor_tag = "-dev" + minor_tag = "" try: from gunicorn.util import popen3