Opened 17 years ago

Closed 17 years ago

#3216 closed enhancement (fixed)

[patch] Make django/bin/daily_cleanup.py script executable

Reported by: Alex Dedul Owned by: Adrian Holovaty
Component: Tools Version:
Severity: normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Patch is trivial.

Index: django/bin/daily_cleanup.py
===================================================================
--- django/bin/daily_cleanup.py (revision 4269)
+++ django/bin/daily_cleanup.py (working copy)
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
 """
 Daily cleanup job.
 

Change History (1)

comment:1 by Adrian Holovaty, 17 years ago

Resolution: fixed
Status: newclosed

(In [4271]) Fixed #3216 -- Added shebang statement to daily_cleanup.py

Note: See TracTickets for help on using tickets.
Back to Top