Skip to content

Commit

Permalink
version to 0.11.19
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Fiers committed Dec 4, 2012
1 parent 41a9075 commit b8d0397
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 2 deletions.
7 changes: 7 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Moa 0.11.19 / 2012-12-04
==========================

* implemented a universal moa clean
* updated docs
* added acknowledgements

Moa 0.11.18 / 2012-12-02
==========================

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.18
0.11.19
2 changes: 1 addition & 1 deletion moa/plugin/system/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def set(job, args):
if not '=' in a:
old = job.conf[a]
key = a
val = moa.ui.askUser("%s:\n> " % a, old)
val = moa.ui.askUser(a, old)
else:
key, val = a.split('=', 1)

Expand Down
25 changes: 25 additions & 0 deletions sphinx/commands/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,31 @@ optional arguments:
~~~~~~~~~~~~~~~~~~


.. _command_moa_clean:

moa **clean**
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

~~~~~~~~~~~~~~~~~~
usage: moa clean [-h] [-v] [--profile]

Clean everything except the moa job from a directory.

moa clean removes all files in the current directory plus all
known output files that are not in the current directory. Empty
directories will be removed as well.

Note that this command can be overridden by defining a template
"clean" command

optional arguments:
-h, --help show this help message and exit
-v, --verbose Show debugging output (default: False)
--profile Run the profiler (default: False)

~~~~~~~~~~~~~~~~~~


.. _command_moa_cp:

moa **cp**
Expand Down

0 comments on commit b8d0397

Please sign in to comment.