ソースを参照

Remove crash condition when the queue isn't full

master
Thomas Mannay GitHub 7年前
コミット
7cd7aaabb9
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      seddy.py

+ 1
- 1
seddy.py ファイルの表示

@@ -52,7 +52,7 @@ class Queue:
if re.search(s, self.data[i]):
return self.data[i]
i -= 1
if i == self.tail-1:
if i == self.tail-1 or self.data[i] is None:
return False

def seddy(sed, history):


読み込み中…
キャンセル
保存