comparison roundup/admin.py @ 3197:6d0b5937ee0d

fix: module csv is in standard library, not in roundup package; remove unused rfc822 import
author Alexander Smishlajev <a1s@users.sourceforge.net>
date Wed, 16 Feb 2005 14:22:16 +0000
parents 88dbe6b3d891
children 29bde1f0d364
comparison
equal deleted inserted replaced
3194:f887e55edc94 3197:6d0b5937ee0d
14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" 15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, 16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
18 # 18 #
19 # $Id: admin.py,v 1.87 2005-02-15 00:23:30 richard Exp $ 19 # $Id: admin.py,v 1.88 2005-02-16 14:22:16 a1s Exp $
20 20
21 '''Administration commands for maintaining Roundup trackers. 21 '''Administration commands for maintaining Roundup trackers.
22 ''' 22 '''
23 __docformat__ = 'restructuredtext' 23 __docformat__ = 'restructuredtext'
24 24
25 import sys, os, getpass, getopt, re, UserDict, shutil, rfc822 25 import csv, getopt, getpass, os, re, shutil, sys, UserDict
26 from roundup import date, hyperdb, roundupdb, init, password, token, csv 26
27 from roundup import date, hyperdb, roundupdb, init, password, token
27 from roundup import __version__ as roundup_version 28 from roundup import __version__ as roundup_version
28 import roundup.instance 29 import roundup.instance
29 from roundup.configuration import CoreConfig 30 from roundup.configuration import CoreConfig
30 from roundup.i18n import _ 31 from roundup.i18n import _
31 32

Roundup Issue Tracker: http://roundup-tracker.org/