Remove unnecessary coding line

As per PEP 263, a Python file with non-ASCII characters must have a
line with "coding: <some-encoding>". This file is pure ASCII, so the
line is unnecessary here.

Change-Id: I1cade3ddc7ef9631a5230bd00bafc64979cbf80a
This commit is contained in:
Martin Geisler
2014-05-27 21:36:31 +02:00
parent 6d6eff37a2
commit 99382fa72f

View File

@@ -1,5 +1,4 @@
#!/usr/bin/python
# -*- encoding: utf-8 -*-
# Copyright (c) 2013 OpenStack, LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");