summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'x11-misc/adesklets/files/adesklets-0.5.0-adesklets_installer.patch')
-rw-r--r--x11-misc/adesklets/files/adesklets-0.5.0-adesklets_installer.patch43
1 files changed, 43 insertions, 0 deletions
diff --git a/x11-misc/adesklets/files/adesklets-0.5.0-adesklets_installer.patch b/x11-misc/adesklets/files/adesklets-0.5.0-adesklets_installer.patch
new file mode 100644
index 000000000000..fc706a75165b
--- /dev/null
+++ b/x11-misc/adesklets/files/adesklets-0.5.0-adesklets_installer.patch
@@ -0,0 +1,43 @@
+--- a/utils/adesklets_installer
++++ b/utils/adesklets_installer
+@@ -470,7 +470,7 @@ try:
+ self.lines = data.splitlines()
+ else:
+ self.lines = data
+- for i, line in zip(xrange(len(self.lines)), self.lines):
++ for i, line in zip(range(len(self.lines)), self.lines):
+ self.pad.addstr(i, 0, line)
+ self.scroll(0)
+ else:
+@@ -496,9 +496,10 @@ try:
+ new = 0
+ elif new >= len(self.lines):
+ new = len(self.lines)-1
+-
+- self.pad.addstr(self.cur, 0, self.lines[self.cur])
+- self.pad.addstr(new, 0, self.lines[new], self.hl)
++
++ if len(self.lines)>1:
++ self.pad.addstr(self.cur, 0, self.lines[self.cur])
++ self.pad.addstr(new, 0, self.lines[new], self.hl)
+ self.cur = new
+ self.refresh()
+
+@@ -620,14 +621,14 @@ warranty; not even for MERCHANTABILITY o
+ opts, args= p.parse_args()
+
+ # Just instanciate the right GUI to start up the application
+- # In orger, we try to instanciate the Tk, curses and raw
++ # In order, we try to instanciate the Tk, curses and raw
+ # interface, falling to the next in case of unavailability or
+ # initialization errors
+- #
++ #
+ select = opts.raw + opts.curses + opts.Tk
+ for ui in ('Tk', 'curses', 'raw'):
+ if (globals().has_key('%sGUI' % ui) and
+- getattr(opts, ui) or select==0 or ui=='raw'):
++ (getattr(opts, ui) or select==0 or ui=='raw')):
+ if globals()['%sGUI' % ui](): break
+
+