Skip to content

Commit

Permalink
max line lenght is really 100
Browse files Browse the repository at this point in the history
  • Loading branch information
gsemet committed Sep 22, 2015
1 parent 32edd0a commit f3dcf59
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion install.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ def copyDataFile(filename, dstPath):
lib.copyFile(os.path.join(dataFolder, filename), dstPath)

copyDataFile("guake.schema", "share/glib-2.0/schemas/org.gnome.gschema.xml")
lib.execute("sudo glib-compile-schemas {prefix}/share/glib-2.0/schemas/".format(prefix=options.prefix))
lib.execute("sudo glib-compile-schemas {prefix}/share/glib-2.0/schemas/"
.format(prefix=options.prefix))
2 changes: 1 addition & 1 deletion pep8rc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
show-source = yes
statistics = yes
count = yes
max-line-length = 99
max-line-length = 100

# List of currently ignored PEP8 issues. Some of them definetely should be
# enabled in future.
Expand Down
5 changes: 3 additions & 2 deletions src/guake/guake_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -790,8 +790,9 @@ def show(self):
# log.debug("self.window: %s. Dir=%s", type(self.window), dir(self.window))
# is_iconified = self.is_iconified()
# if is_iconified:
# log.debug("Is iconified. Ubuntu Trick => removing skip_taskbar_hint and skip_pager_hint "
# "so deiconify can work!")
# log.debug("Is iconified. Ubuntu Trick => "
# "removing skip_taskbar_hint and skip_pager_hint "
# "so deiconify can work!")
# self.get_widget('window-root').set_skip_taskbar_hint(False)
# self.get_widget('window-root').set_skip_pager_hint(False)
# self.get_widget('window-root').set_urgency_hint(False)
Expand Down

0 comments on commit f3dcf59

Please sign in to comment.