Merge lp:~muktupavels/compiz/compizconfig-remove-tabs into lp:compiz/0.9.13

Proposed by Alberts Muktupāvels
Status: Merged
Approved by: Marco Trevisan (Treviño)
Approved revision: 4161
Merged at revision: 4164
Proposed branch: lp:~muktupavels/compiz/compizconfig-remove-tabs
Merge into: lp:compiz/0.9.13
Diff against target: 48 lines (+12/-13)
1 file modified
compizconfig/compizconfig-python/setup.py (+12/-13)
To merge this branch: bzr merge lp:~muktupavels/compiz/compizconfig-remove-tabs
Reviewer Review Type Date Requested Status
Marco Trevisan (Treviño) Approve
Dmitry Shachnev Approve
Review via email: mp+349662@code.launchpad.net

Commit message

compizconfig: remove tabs.

Description of the change

Remove tabs.

To post a comment you must log in.
Revision history for this message
Dmitry Shachnev (mitya57) wrote :

There are also tabs in other files, but that can be fixed later.

review: Approve
Revision history for this message
Marco Trevisan (Treviño) (3v1n0) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'compizconfig/compizconfig-python/setup.py'
--- compizconfig/compizconfig-python/setup.py 2012-10-16 13:53:20 +0000
+++ compizconfig/compizconfig-python/setup.py 2018-07-16 23:26:27 +0000
@@ -123,19 +123,19 @@
123 user_options = []123 user_options = []
124124
125 def initialize_options (self):125 def initialize_options (self):
126 self.cwd = None126 self.cwd = None
127127
128 def finalize_options (self):128 def finalize_options (self):
129 self.cwd = os.getcwd ()129 self.cwd = os.getcwd ()
130130
131 def run (self):131 def run (self):
132 assert os.getcwd () == self.cwd, 'Must be in package root: %s' % self.cwd132 assert os.getcwd () == self.cwd, 'Must be in package root: %s' % self.cwd
133 loader = unittest.TestLoader ()133 loader = unittest.TestLoader ()
134134
135 tests = loader.discover (os.getcwd (), pattern='test*')135 tests = loader.discover (os.getcwd (), pattern='test*')
136 result = unittest.TestResult ()136 result = unittest.TestResult ()
137137
138 unittest.TextTestRunner (verbosity=2).run (tests)138 unittest.TextTestRunner (verbosity=2).run (tests)
139139
140140
141setup (141setup (
@@ -144,12 +144,11 @@
144 description = "CompizConfig Python",144 description = "CompizConfig Python",
145 url = "https://launchpad.net/compiz",145 url = "https://launchpad.net/compiz",
146 license = "GPL",146 license = "GPL",
147 maintainer = "Guillaume Seguin",147 maintainer = "Guillaume Seguin",
148 maintainer_email = "guillaume@segu.in",148 maintainer_email = "guillaume@segu.in",
149 cmdclass = {"uninstall" : uninstall,149 cmdclass = {"uninstall" : uninstall,
150 "install" : install,150 "install" : install,
151 "install_data" : install_data,151 "install_data" : install_data,
152 "build" : build,152 "build" : build,
153 "test" : test}153 "test" : test}
154)154)
155

Subscribers

People subscribed via source and target branches