Skip to content

Commit e7fbcb1

Browse files
author
Chris Wayne
committed
Fixing up some licensing, ready for releasing
1 parent 439b510 commit e7fbcb1

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

.quickly

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
project = unity-lens-github
22
version = 12.04
33
template = unity-lens
4-
version_ubuntu-application = 12.04
4+
version_ubuntu-application = 12.08.1

bin/unity-lens-github

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ if (os.path.exists(os.path.join(PROJECT_ROOT_DIRECTORY, 'unity_lens_github'))
3838
if python_path:
3939
os.putenv('PYTHONPATH', "%s:%s" % (os.getenv('PYTHONPATH', ''), ':'.join(python_path))) # for subprocesses
4040

41-
from unity_lens_github import GithubLens
42-
run_lens(GithubLens, sys.argv)
41+
from unity_lens_github import UnityLensGithubLens
42+
run_lens(UnityLensGithubLens, sys.argv)

unity_lens_github/__init__.py

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
### BEGIN LICENSE
2+
# Copyright (C) 2012 Chris Wayne <[email protected]>
3+
# This program is free software: you can redistribute it and/or modify it
4+
# under the terms of the GNU General Public License version 3, as published
5+
# by the Free Software Foundation.
6+
#
7+
# This program is distributed in the hope that it will be useful, but
8+
# WITHOUT ANY WARRANTY; without even the implied warranties of
9+
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
10+
# PURPOSE. See the GNU General Public License for more details.
11+
#
12+
# You should have received a copy of the GNU General Public License along
13+
# with this program. If not, see <http://www.gnu.org/licenses/>.
14+
### END LICENSE
115
import logging
216
import optparse
317
import urllib2

unity_lens_github/unity_lens_githubconfig.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# files). By default, this is ../data, relative your trunk layout
3030
__unity_lens_github_data_directory__ = '../data/'
3131
__license__ = 'GPL-3'
32-
__version__ = 'VERSION'
32+
__version__ = '0.1'
3333

3434
import os
3535

0 commit comments

Comments
 (0)