Skip to content

Commit

Permalink
Rollback to Python3.1 (too much issues to sort out, no time to handle…
Browse files Browse the repository at this point in the history
… that now) + .gitignore/make-clean py3.2 caches
  • Loading branch information
syam44 committed Jan 10, 2012
1 parent c4011f9 commit cd40370
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,6 +1,7 @@
# Compiled python caches
*.pyc
*.pyo
__pycache__

# Compiled .mo gettext catalogs
hotspot_login_manager/lang/*/*
Expand Down
1 change: 1 addition & 0 deletions Makefile
Expand Up @@ -48,6 +48,7 @@ clean-mo:
clean-pyc:
find ./ -type f -name '*.pyc' -print0 | xargs -0 rm 2>/dev/null || true
find ./ -type f -name '*.pyo' -print0 | xargs -0 rm 2>/dev/null || true
find ./ -type d -name '__pycache__' -print0 | xargs -0 rmdir 2>/dev/null || true


#
Expand Down
2 changes: 1 addition & 1 deletion hotspot-login-manager.py
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/python3.1
# -*- coding:utf-8 -*-
#
# hotspot-login-manager
Expand Down

0 comments on commit cd40370

Please sign in to comment.