fixed help for fx-cleanup

This commit is contained in:
Garry Boyer
2007-03-28 23:44:54 +00:00
parent 5d903d953f
commit cf06bc2e08
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -4,10 +4,10 @@ USAGE = """fx-cleanup: Shows a status summary of a FASTexec experiment.
Example:
fx-status knn_k ./main # removes status files of failed trials
fx-status knn_k ./main --purge # removes entire directories of
fx-cleanup knn_k ./main # removes status files of failed trials
fx-cleanup knn_k ./main --purge # removes entire directories of
failed trials
fx-status knn_k ./main --nuke # removes all directories of all trials
fx-cleanup knn_k ./main --nuke # removes all directories of all trials
The point of fx-cleanup is to allow the re-running of trials.
The normal use (with no special options) allows the re-running of trials
+1 -1
View File
@@ -227,7 +227,7 @@ def shellquote(s):
if c in map.keys():
result += map[c]
changed = True
elif c.isalnum() or c == '/':
elif c.isalnum() or c in "/._-":
result += c
else:
result += c