Skip to content

Commit 1b80a8b

Browse files
author
Alexander Smishlajev
committed
fix: module csv is in standard library, not in roundup package;
remove unused rfc822 import
1 parent 8e9b685 commit 1b80a8b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

roundup/admin.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,15 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: admin.py,v 1.85.2.1 2005-02-15 00:22:23 richard Exp $
19+
# $Id: admin.py,v 1.85.2.2 2005-02-16 14:16:51 a1s Exp $
2020

2121
'''Administration commands for maintaining Roundup trackers.
2222
'''
2323
__docformat__ = 'restructuredtext'
2424

25-
import sys, os, getpass, getopt, re, UserDict, shutil, rfc822
26-
from roundup import date, hyperdb, roundupdb, init, password, token, csv
25+
import csv, getopt, getpass, os, re, shutil, sys, UserDict
26+
27+
from roundup import date, hyperdb, roundupdb, init, password, token
2728
from roundup import __version__ as roundup_version
2829
import roundup.instance
2930
from roundup.configuration import CoreConfig

0 commit comments

Comments
 (0)