]> git.decadent.org.uk Git - dak.git/commitdiff
Use "import daklib.foo as foo" style
authorJoerg Jaspert <joerg@debian.org>
Sun, 4 May 2008 00:32:26 +0000 (02:32 +0200)
committerJoerg Jaspert <joerg@debian.org>
Sun, 4 May 2008 00:32:26 +0000 (02:32 +0200)
ChangeLog
dak/show_new.py

index 1db7a271de28929dd97212f738f4224618d96fe9..85c150706e95ccc5f2f563d38c7f1a9874170a4f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -31,6 +31,7 @@
        * dak/process_new.py: likewise
        * dak/process_unchecked.py: likewise
        * dak/rm.py: likewise
+       * dak/show_new.py: likewise
 
        * dak/check_archive.py (check_files_not_symlinks): Remove
        long-time unused and commented code. Import stuff from daklib as
index a18847cc96d0f76bdc88bdad8cfc2d0f0eacb6ff..87bea79630d124a163973bb127fbca33b84a6c87 100755 (executable)
@@ -28,9 +28,9 @@
 import copy, os, sys, time
 import apt_pkg
 import examine_package
-import daklib.database
+import daklib.database as database
 import daklib.queue as queue
-import daklib.utils
+import daklib.utils as utils
 
 # Globals
 Cnf = None
@@ -195,7 +195,7 @@ def usage (exit_code=0):
 def init():
     global Cnf, Options, Upload, projectB
 
-    Cnf = daklib.utils.get_conf()
+    Cnf = utils.get_conf()
 
     Arguments = [('h',"help","Show-New::Options::Help"),
                  ("p","html-path","Show-New::HTMLPath","HasArg")]
@@ -226,7 +226,7 @@ def main():
     examine_package.use_html=1
 
     for changes_file in changes_files:
-        changes_file = daklib.utils.validate_changes_file_arg(changes_file, 0)
+        changes_file = utils.validate_changes_file_arg(changes_file, 0)
         if not changes_file:
             continue
         print "\n" + changes_file