Mercurial > p > roundup > code
comparison roundup/instance.py @ 2701:460c07a2dff1
remove unused import
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Wed, 29 Sep 2004 07:26:17 +0000 |
| parents | d138df58b0c3 |
| children | 402d6d556558 |
comparison
equal
deleted
inserted
replaced
| 2700:4c08ca1e2460 | 2701:460c07a2dff1 |
|---|---|
| 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" | 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" |
| 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, | 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
| 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 17 # | 17 # |
| 18 # $Id: instance.py,v 1.22 2004-09-29 07:01:44 a1s Exp $ | 18 # $Id: instance.py,v 1.23 2004-09-29 07:26:17 a1s Exp $ |
| 19 | 19 |
| 20 '''Tracker handling (open tracker). | 20 '''Tracker handling (open tracker). |
| 21 | 21 |
| 22 Backwards compatibility for the old-style "imported" trackers. | 22 Backwards compatibility for the old-style "imported" trackers. |
| 23 ''' | 23 ''' |
| 24 __docformat__ = 'restructuredtext' | 24 __docformat__ = 'restructuredtext' |
| 25 | 25 |
| 26 import os | 26 import os |
| 27 import types | |
| 28 from roundup import configuration, mailgw, rlog | 27 from roundup import configuration, mailgw, rlog |
| 29 from roundup import hyperdb, backends | 28 from roundup import hyperdb, backends |
| 30 from roundup.cgi import client | 29 from roundup.cgi import client |
| 31 | 30 |
| 32 class Vars: | 31 class Vars: |
