fixed issue 996
This commit is contained in:
@@ -1 +1 @@
|
||||
Version 2.0.8 (2012-09-11 09:39:06) stable
|
||||
Version 2.0.8 (2012-09-11 09:53:02) stable
|
||||
|
||||
@@ -15,10 +15,10 @@ from gluon.utils import web2py_uuid
|
||||
from glob import glob
|
||||
import shutil
|
||||
import platform
|
||||
try:
|
||||
from git import *
|
||||
try:
|
||||
from git import *
|
||||
have_git = True
|
||||
except ImportError:
|
||||
except ImportError:
|
||||
have_git = False
|
||||
GIT_MISSING = 'requires python-git module, but not installed or incompatible version'
|
||||
|
||||
|
||||
+1
-1
@@ -2416,7 +2416,7 @@ class SQLTABLE(TABLE):
|
||||
_class = 'odd'
|
||||
|
||||
if not selectid is None: #new implement
|
||||
if record[self.id_field_name]==selectid:
|
||||
if record.get('id') == selectid:
|
||||
_class += ' rowselected'
|
||||
|
||||
for colname in columns:
|
||||
|
||||
Reference in New Issue
Block a user