diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-10-26 22:13:33 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-10-26 22:16:08 +0200 |
commit | aa70294ffc0abbeeb30b4c4001e4db8b3539bf75 (patch) | |
tree | 225914ab32f8c72269b06b82de20cf7e959600e4 /uitest/impress_tests | |
parent | 22d0970e690d7a623619a84d5054b6f92b7acea4 (diff) |
normalize existing emacs/vim mode-lines in python files
Bunch of these were setting C++ or Make modes and icky tabs...
Also, reportedly Emacs can figure out to enable python-mode
automatically.
Change-Id: I50072488fb92cb4d27aa3f74f717a28ae3967543
Diffstat (limited to 'uitest/impress_tests')
-rw-r--r-- | uitest/impress_tests/drawinglayer.py | 4 | ||||
-rw-r--r-- | uitest/impress_tests/start.py | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/uitest/impress_tests/drawinglayer.py b/uitest/impress_tests/drawinglayer.py index 8426f7e5f650..0c7a2542da6f 100644 --- a/uitest/impress_tests/drawinglayer.py +++ b/uitest/impress_tests/drawinglayer.py @@ -1,4 +1,4 @@ -# -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*- # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -52,3 +52,5 @@ class ImpressDrawinglayerTest(UITestCase): time.sleep(5) self.ui_test.close_doc() + +# vim: set shiftwidth=4 softtabstop=4 expandtab: diff --git a/uitest/impress_tests/start.py b/uitest/impress_tests/start.py index b489b7e0fe7a..de7a6ece7247 100644 --- a/uitest/impress_tests/start.py +++ b/uitest/impress_tests/start.py @@ -1,4 +1,4 @@ -# -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*- # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -77,4 +77,4 @@ class SimpleImpressTest(UITestCase): self.ui_test.close_doc() -# vim:set shiftwidth=4 softtabstop=4 expandtab: */ +# vim: set shiftwidth=4 softtabstop=4 expandtab: |