X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fls.py;h=69251eb47a6123b9e02bb1eb96d7b9bf87eedf5d;hb=ac248cc46170af4620aafd918cf3f7d593c4a9da;hp=2b445d8202771a91c2251ce2c3bcc07a808111cd;hpb=7f20bb168b919452f8ee0c865ab91f0084a9f46a;p=dak.git diff --git a/dak/ls.py b/dak/ls.py index 2b445d82..69251eb4 100755 --- a/dak/ls.py +++ b/dak/ls.py @@ -1,8 +1,13 @@ #!/usr/bin/env python -# Display information about package(s) (suite, version, etc.) -# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006 James Troup +""" +Display information about package(s) (suite, version, etc.) +@contact: Debian FTP Master +@copyright: 2000, 2001, 2002, 2003, 2004, 2005, 2006 James Troup +@license: GNU General Public License version 2 or later + +""" # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or @@ -26,15 +31,17 @@ ################################################################################ -import os, pg, sys +import os +import pg +import sys import apt_pkg -import daklib.database as database -import daklib.utils as utils +from daklib import database +from daklib import utils ################################################################################ -Cnf = None -projectB = None +Cnf = None #: Configuration, apt_pkg.Configuration +projectB = None #: database connection, pgobject ################################################################################