~shikharkohli/sahana-eden/gsoc1

« back to all changes in this revision

Viewing changes to controllers/default.py

  • Committer: Shikhar Kohli
  • Date: 2010-08-11 18:40:09 UTC
  • mfrom: (802.1.156 eden)
  • Revision ID: shikharkohli@gmail.com-20100811184009-yy8zag5dowlam0ip
Merge trunk and update (a bit) of JS

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
    try:
149
149
        sqlite_version = (subprocess.Popen(["sqlite3", "-version"], stdout=subprocess.PIPE).communicate()[0]).rstrip()
150
150
    except:
151
 
        sqlite_version = T("Not installed or incorectly configured.")
 
151
        sqlite_version = T("Not installed or incorrectly configured.")
152
152
    try:
153
153
        mysql_version = (subprocess.Popen(["mysql", "--version"], stdout=subprocess.PIPE).communicate()[0]).rstrip()[10:]
154
154
    except: