|
Last change
on this file was
18143,
checked in by Cinc-th, 2 years ago
|
|
TagsPlugin: replace unicode and dict.iteritems() statements which are no longer available in Python 3. Fix exception handling now requiring Exception as e. Fixed imports.
Refs #13994
|
|
File size:
531 bytes
|
| Line | |
|---|
| 1 | # -*- coding: utf-8 -*- |
|---|
| 2 | # |
|---|
| 3 | # Copyright (C) 2006 Alec Thomas <alec@swapoff.org> |
|---|
| 4 | # Copyright (C) 2012-2014 Steffen Hoffmann <hoff.st@web.de> |
|---|
| 5 | # |
|---|
| 6 | # This software is licensed as described in the file COPYING, which |
|---|
| 7 | # you should have received as part of this distribution. |
|---|
| 8 | # |
|---|
| 9 | |
|---|
| 10 | """ |
|---|
| 11 | See tractags.api for detailed information. |
|---|
| 12 | """ |
|---|
| 13 | |
|---|
| 14 | import pkg_resources |
|---|
| 15 | pkg_resources.require('Trac >= 1.4') |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | import tractags.api |
|---|
| 19 | import tractags.db |
|---|
| 20 | import tractags.wiki |
|---|
| 21 | import tractags.ticket |
|---|
| 22 | import tractags.macros |
|---|
| 23 | import tractags.web_ui |
|---|
| 24 | import tractags.admin |
|---|
Note: See
TracBrowser
for help on using the repository browser.