~ubuntu-branches/ubuntu/maverick/ubufox/maverick-proposed

« back to all changes in this revision

Viewing changes to pfs/db/plugindb.py

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2008-04-20 14:17:40 UTC
  • mto: (1.1.23)
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: james.westby@ubuntu.com-20080420141740-c0xau22siqq0d6h0
Tags: upstream-0.5
ImportĀ upstreamĀ versionĀ 0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
import threading
22
22
import nppapt
23
23
import sqlite3
 
24
import sys
 
25
 
 
26
if len(sys.argv) < 2:
 
27
        print "CMD <release>"
 
28
        sys.exit(2)
24
29
 
25
30
archs="amd64 i386 powerpc sparc"
26
 
releases="7.10"
 
31
releases=sys.argv[1]
 
32
 
 
33
print "RELEASES", releases
27
34
 
28
35
class AptPluginDbUpdater:
29
36