diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-01 11:11:04 -0700 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-16 15:30:13 -0700 |
commit | 262c789754931d95a4bb567fc59a3ffb833ed1bb (patch) | |
tree | 56850ddddf59cd52b401210d8cea0154781973c3 /mediagoblin/gmg_commands/assetlink.py | |
parent | aa387fc57ec1c176a739df8c5f4cedaf70ae9af1 (diff) | |
download | mediagoblin-262c789754931d95a4bb567fc59a3ffb833ed1bb.tar.lz mediagoblin-262c789754931d95a4bb567fc59a3ffb833ed1bb.tar.xz mediagoblin-262c789754931d95a4bb567fc59a3ffb833ed1bb.zip |
Throw an error if there are unrecognized arguments
Diffstat (limited to 'mediagoblin/gmg_commands/assetlink.py')
-rw-r--r-- | mediagoblin/gmg_commands/assetlink.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mediagoblin/gmg_commands/assetlink.py b/mediagoblin/gmg_commands/assetlink.py index 49e27e33..dff737ff 100644 --- a/mediagoblin/gmg_commands/assetlink.py +++ b/mediagoblin/gmg_commands/assetlink.py @@ -138,6 +138,7 @@ def assetlink(args): """ Link the asset directory of the currently installed theme and plugins """ + commands_util.check_unrecognized_args(args) mgoblin_app = commands_util.setup_app(args[0]) app_config = mg_globals.app_config |