From 8eb1c7ce756973783353cc3e11ecf627cfbe875e Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Fri, 6 Oct 2006 12:33:10 +0000 Subject: [PATCH] move rst_xhtml_generator.py to common/ where it belongs --- src/chat_control.py | 2 +- src/common/connection.py | 2 +- src/{ => common}/rst_xhtml_generator.py | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename src/{ => common}/rst_xhtml_generator.py (100%) diff --git a/src/chat_control.py b/src/chat_control.py index f9c25a917..82e76867e 100644 --- a/src/chat_control.py +++ b/src/chat_control.py @@ -34,7 +34,7 @@ from message_textview import MessageTextView from common.contacts import GC_Contact from common.logger import Constants constants = Constants() -from rst_xhtml_generator import create_xhtml +from common.rst_xhtml_generator import create_xhtml from common.xmpp.protocol import NS_XHTML try: diff --git a/src/common/connection.py b/src/common/connection.py index eca1b6483..783fa893d 100644 --- a/src/common/connection.py +++ b/src/common/connection.py @@ -35,7 +35,7 @@ from common import passwords from connection_handlers import * USE_GPG = GnuPG.USE_GPG -from rst_xhtml_generator import create_xhtml +from common.rst_xhtml_generator import create_xhtml class Connection(ConnectionHandlers): '''Connection class''' diff --git a/src/rst_xhtml_generator.py b/src/common/rst_xhtml_generator.py similarity index 100% rename from src/rst_xhtml_generator.py rename to src/common/rst_xhtml_generator.py