Skip to content

Commit

Permalink
add shebang for now until we switch to click
Browse files Browse the repository at this point in the history
  • Loading branch information
jrabbit committed Jun 28, 2017
1 parent 6d2cf94 commit 7ce5cc9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion redshirt.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import logging
import os
import shutil
Expand All @@ -10,7 +12,7 @@
import requests
from bottle import request, route, run, static_file, template

__version__ = "0.1.0a1"
__version__ = "0.1.0a2"
logger = logging.getLogger(__name__)
DATA_DIR = os.getenv("TASKDDATA", "/var/lib/taskd")

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup

setup(name="redshirt",
version="0.1.0a1",
version="0.1.0a2",
scripts=['redshirt.py'],
author="Jack Laxson",
author_email="jack@getpizza.cat",
Expand Down

0 comments on commit 7ce5cc9

Please sign in to comment.