Skip to content

Commit

Permalink
Merge pull request #930 from lanzagar/sqlpassword
Browse files Browse the repository at this point in the history
owdatainfo: Do not show password in connection info
  • Loading branch information
kernc committed Dec 16, 2015
2 parents 2d52350 + a6a6045 commit a9ef22f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Orange/widgets/data/owdatainfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def update_size():
connection_string = ' '.join(
'%s=%s' % (key, value)
for key, value in data.connection_params.items()
if value is not None)
if value is not None and key != 'password')
self.location = "Table '%s', using connection:\n%s" % (
data.table_name, connection_string)
dd["Rows"] = data.approx_len()
Expand Down

0 comments on commit a9ef22f

Please sign in to comment.