Changeset 3340
- Timestamp:
- 02/18/08 23:14:58 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/commandline.py
r3339 r3340 109 109 result.append(formatter.format_heading(_("filtering expressions"))) 110 110 formatter.indent() 111 result.append(formatter.format_description(_("Use the filtering expressions to extract only parts of the datas. Allowed filters are of the form 'key=value'. ")))111 result.append(formatter.format_description(_("Use the filtering expressions to extract only parts of the datas. Allowed filters are of the form 'key=value'. Wildcards are not expanded as part of these filtering expressions, so you can't use them here."))) 112 112 result.append("\n") 113 113 result.append(formatter.format_heading(_("allowed keys for now"))) … … 131 131 formatter.dedent() 132 132 result.append("\n") 133 result.append(formatter.format_description(_("'now' and 'today' are not exactly the same since 'today' represents the first or last second of the day depending on if it's used in a 'start=' or 'end=' date expression."))) 134 result.append("\n") 133 135 return "".join(result) 134 135 136 #'now' and 'today' are not exactly the same since today represents the first137 #or last second of the day depending on if it's used in a start= or end=138 #date expression. The utility to be able to specify dates in the future is139 #a question which remains to be answered :-)140 #141 #Contrary to other PyKota management tools, wildcard characters are not142 #expanded, so you can't use them.143 136 144 137 def format_examples(self, formatter=None) :