[Thuban-commits] r2689 - in trunk/thuban: . Thuban/UI
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Thu Aug 3 11:57:25 CEST 2006
Author: dpinte
Date: 2006-08-03 11:57:24 +0200 (Thu, 03 Aug 2006)
New Revision: 2689
Modified:
trunk/thuban/ChangeLog
trunk/thuban/Thuban/UI/main.py
Log:
2006-06-29 Didrik Pinte <dpinte at itae.be>
* Thuban/UI/main.py: circular import fix.
Modified: trunk/thuban/ChangeLog
===================================================================
--- trunk/thuban/ChangeLog 2006-06-30 12:27:20 UTC (rev 2688)
+++ trunk/thuban/ChangeLog 2006-08-03 09:57:24 UTC (rev 2689)
@@ -1,3 +1,7 @@
+2006-06-29 Didrik Pinte <dpinte at itae.be>
+
+ * Thuban/UI/main.py: circular import fix.
+
2006-06-27 Frank Koormann <frank at intevation.de>
New Classification "Pattern": Classify text attributes by regexp.
Modified: trunk/thuban/Thuban/UI/main.py
===================================================================
--- trunk/thuban/Thuban/UI/main.py 2006-06-30 12:27:20 UTC (rev 2688)
+++ trunk/thuban/Thuban/UI/main.py 2006-08-03 09:57:24 UTC (rev 2689)
@@ -15,7 +15,7 @@
import sys
import getopt
-from application import ThubanApplication
+import application
import Thuban.version
@@ -28,7 +28,7 @@
"""Instantiate the application object and run the application"""
if verify_versions():
- app = ThubanApplication(0)
+ app = application.ThubanApplication(0)
opts, args = getopt.getopt(sys.argv[1:], '',
['enable-attribute-editing'])
for optchar, value in opts:
More information about the Thuban-commits
mailing list