Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
KazukiPrzyborowski authored Mar 1, 2018
1 parent adcbbd0 commit c9b88ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pycatfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,9 +418,9 @@ def PyCatListFiles(infile, seekstart=0, seekend=0, verbose=False):
permissionstr = "";
for fmodval in str(listcatfiles[lcfi]['fchmod'])[-3:]:
try:
permissionstr = permissions['access'][fmodval]+permissionstr;
permissionstr = permissionstr+permissions['access'][fmodval];
except KeyError:
permissionstr = "---"+permissionstr;
permissionstr = permissionstr+"---";
if(listcatfiles[lcfi]['ftype']==0):
permissionstr = "d"+permissionstr;
if(listcatfiles[lcfi]['ftype']==1):
Expand Down

0 comments on commit c9b88ec

Please sign in to comment.