source: tagsplugin/trunk/tractags/__init__.py

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
RevLine 
[2954]1# -*- coding: utf-8 -*-
2#
3# Copyright (C) 2006 Alec Thomas <alec@swapoff.org>
[13859]4# Copyright (C) 2012-2014 Steffen Hoffmann <hoff.st@web.de>
[2954]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
[1752]10"""
11See tractags.api for detailed information.
12"""
13
[13859]14import pkg_resources
[17883]15pkg_resources.require('Trac >= 1.4')
[13859]16
17
[18143]18import tractags.api
19import tractags.db
20import tractags.wiki
21import tractags.ticket
22import tractags.macros
23import tractags.web_ui
24import tractags.admin
Note: See TracBrowser for help on using the repository browser.