Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuellbier committed Jun 26, 2018
1 parent 134e5e2 commit e241a80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,8 @@ def getManifest(self):
def getPermissions(self):
print "Getting files permissions..."
cmd = "adb " + self.device + " shell su -c 'ls -aRl /data/data/" + self.package + " /sdcard/Android/data/" + self.package + "'"
if self.externalStorage:
cmd = cmd[:-1] + " " + self.externalStorage + "/Android/data/"+ self.package + "'"

This comment has been minimized.

Copy link
@mrt-135

mrt-135 Dec 20, 2021

the function getPermission is not a self method work you should to try " def getFeedPermission"

if self.externalStorage:
cmd = cmd[:-1] + " " + self.externalStorage + "/Android/data/"+ self.package + "'"
writeResultToFile(cmd, self.path + "/permissions", self.verbose)
print ""

Expand Down

1 comment on commit e241a80

@mrt-135
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you have a problem with the variable issue getLogs

Please sign in to comment.