diff --git a/persoconf/main.py b/persoconf/main.py index e387994..0130ee9 100755 --- a/persoconf/main.py +++ b/persoconf/main.py @@ -402,7 +402,10 @@ if args.command == "list": # Print the files too if asked so if args.show_files: for f in app_list[app].files: - print("\t%s" % f) + if os.path.isdir(persoconf.path + "/" + app + "/" + f): + print("\t%s/" % f) + else: + print("\t%s" % f) # Some apps were specified, so we list them with their files else: @@ -416,7 +419,10 @@ if args.command == "list": # Print the app files for f in app_list[app].files: - print("\t%s" % f) + if os.path.isdir(persoconf.path + "/" + app + "/" + f): + print("\t%s/" % f) + else: + print("\t%s" % f) # DELETE COMMAND