Author: justi9
Date: 2008-02-14 15:22:21 -0500 (Thu, 14 Feb 2008)
New Revision: 1698
Modified:
mgmt/mint/python/mint/__init__.py
Log:
Fixes some broken indenting.
Modified: mgmt/mint/python/mint/__init__.py
===================================================================
--- mgmt/mint/python/mint/__init__.py 2008-02-14 20:12:48 UTC (rev 1697)
+++ mgmt/mint/python/mint/__init__.py 2008-02-14 20:22:21 UTC (rev 1698)
@@ -285,12 +285,12 @@
def dropSchema(self):
conn = self.getConnection()
try:
- cursor = conn.cursor()
- cursor.execute("drop schema public cascade")
+ cursor = conn.cursor()
+ cursor.execute("drop schema public cascade")
- conn.commit()
+ conn.commit()
finally:
- conn.close()
+ conn.close()
def createSchema(self, file_paths):
conn = self.getConnection()
Show replies by date