]> git.phdru.name Git - m_librarian.git/blobdiff - m_librarian/db.py
Minor refactoring: split test() functions
[m_librarian.git] / m_librarian / db.py
index e02b95bcad56c13d033b52af576245877d3e9798..28033f547a4408cd826215ead5dc2bb763ad4da6 100755 (executable)
@@ -32,7 +32,8 @@ if not db_uri:
         except OSError:  # Perhaps already exists
             pass
         db_file = os.path.join(db_dir, 'm_librarian.sqlite')
-        db_uri = 'sqlite://%s' % db_file.replace(os.sep, '/')
+
+    db_uri = 'sqlite://%s' % db_file.replace(os.sep, '/')
 
 sqlhub.processConnection = connectionForURI(db_uri)
 
@@ -85,7 +86,10 @@ def init_db():
         return
 
 
-if __name__ == '__main__':
+def test():
     print "DB dirs:", db_dirs
     if db_uri:
         print "DB URI:", db_uri
+
+if __name__ == '__main__':
+    test()