8000 Merge branch 'master' of git@github.com:django-extensions/django-exte… · tdsprogramming/django-extensions@39a18ad · GitHub
[go: up one dir, main page]

Skip to content

Commit 39a18ad

Browse files
committed
Merge branch 'master' of git@github.com:django-extensions/django-extensions
2 parents b8d612e + aec8a16 commit 39a18ad

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.pyc
2+
MANIFEST
3+
build
4+
dist

django_extensions/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
VERSION = (0, 4, 'pre')
2+
VERSION = (0, 4)
33

44
# Dynamically calculate the version based on VERSION tuple
55
if len(VERSION)>2 and VERSION[2] is not None:

django_extensions/conf/jobs_template/jobs/sample.py.tmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ class Job(BaseJob):
44
help = "My sample job."
55

66
def execute(self):
7-
# executing empty sample job
8-
pass
7+
# executing empty sample job
8+
pass

0 commit comments

Comments
 (0)
0