Update contrib script to ignore some deprecated provider constants.
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/60274141 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/60274141 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/60274141 Branch: refs/heads/trunk Commit: 6027414164dedac42784560d3601f45228889f06 Parents: b30c9b3 Author: Tomaz Muraus <[email protected]> Authored: Mon Jan 6 18:42:38 2014 +0100 Committer: Tomaz Muraus <[email protected]> Committed: Mon Jan 6 18:42:38 2014 +0100 ---------------------------------------------------------------------- contrib/generate_provider_feature_matrix_table.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/60274141/contrib/generate_provider_feature_matrix_table.py ---------------------------------------------------------------------- diff --git a/contrib/generate_provider_feature_matrix_table.py b/contrib/generate_provider_feature_matrix_table.py index 118ce64..14b20db 100755 --- a/contrib/generate_provider_feature_matrix_table.py +++ b/contrib/generate_provider_feature_matrix_table.py @@ -138,7 +138,10 @@ FRIENDLY_METHODS_NAMES = { IGNORED_PROVIDERS = [ 'dummy', - 'local' + 'local', + + # Deprecated constants + 'cloudfiles_swift' ]
