Skip to content

Commit

Permalink
Renamed load.py -> util.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
Drew Hess committed Oct 10, 2008
1 parent d3ef3b7 commit ea0a26f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lobbyists/load.py → lobbyists/util.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
# load.py - Load Senate LD-1/LD-2 XML documents into a database.
# util.py - Utility functions for the lobbyists package.
# Copyright (C) 2008 by Drew Hess <dhess@bothan.net>
#
# This program is free software: you can redistribute it and/or modify
Expand All @@ -17,7 +17,7 @@
# License along with this program. If not, see
# <http://www.gnu.org/licenses/>.

"""Load Senate LD-1/LD-2 XML documents into a database."""
"""Utility functions for the lobbyists package."""

import lobbyists

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -14,7 +14,7 @@

package_data = { 'lobbyists' : ['lobbyists.sql'] },
entry_points = {
'console_scripts': [ 'lobbyists-load = lobbyists.load:main', ]
'console_scripts': [ 'lobbyists-load = lobbyists.util:main', ]
},

author = 'Drew Hess',
Expand Down

0 comments on commit ea0a26f

Please sign in to comment.