• R/O
  • HTTP
  • SSH
  • HTTPS

fukui-no-namari: Commit

Fukui no Namari


Commit MetaInfo

Revision5a092ff9c18cf765f6d1554e93cf180a37c4aa7d (tree)
Time2009-04-29 23:15:28
AuthorAiwota Programmer <aiwotaprog@tett...>
CommiterAiwota Programmer

Log Message

Previous commit is buggy. Fix it. (#16447)

Change Summary

Incremental Difference

--- a/src/FukuiNoNamari/thread_popup.py
+++ b/src/FukuiNoNamari/thread_popup.py
@@ -68,10 +68,10 @@ class ThreadPopup(gobject.GObject):
6868 if match:
6969 left = int(match.group("left"))
7070 right = int(match.group("right"))
71- if left >= right:
71+ if left <= right:
7272 resnum = range(left, right+1)
7373 else:
74- resnum = range(right, left-1, -1)
74+ resnum = range(left, right-1, -1)
7575 self._show_hint(widget, resnum, orig_uri)
7676 return
7777 match = re.match("\d+", resnum)
Show on old repository browser