pgAdmin 4 commit: Fix the file manager when used under Python 3. Fixes

From: Dave Page <dpage(at)pgadmin(dot)org>
To: pgadmin-hackers(at)postgresql(dot)org
Subject: pgAdmin 4 commit: Fix the file manager when used under Python 3. Fixes
Date: 2016-10-21 11:43:06
Message-ID: E1bxYE6-0004s2-Du@gothos.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Fix the file manager when used under Python 3. Fixes #1872

Issues fixed:

1) In Python 3, parameter "cmp" is removed from sorted method. So File Manager won't open.
As we are sorting data on JS side using Natural sort, so on server side sorting is not required.

2) Improvement in Exception handling.

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=d806a9ce9ed269e53c256d747dba46810f78eb87
Author: Surinder Kumar <surinder(dot)kumar(at)enterprisedb(dot)com>

Modified Files
--------------
web/pgadmin/misc/file_manager/__init__.py | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)

Browse pgadmin-hackers by date

  From Date Subject
Next Message Dave Page 2016-10-21 11:43:12 Re: [pgAdmin4][Patch]: RM1872 - Not able to open the File Manager
Previous Message Dave Page 2016-10-21 11:38:00 Re: PATCH: To display Security Label control properly in procedure node(pgAdmin4)