Przeglądaj źródła

site name cannot be assets

version-14
Pratik Vyas 11 lat temu
rodzic
commit
c830f56fb7
1 zmienionych plików z 2 dodań i 1 usunięć
  1. +2
    -1
      webnotes/cli.py

+ 2
- 1
webnotes/cli.py Wyświetl plik

@@ -71,7 +71,8 @@ def get_sites(sites_path=None):
sites_path = '.'
return [site for site in os.listdir(sites_path)
if not os.path.islink(os.path.join(sites_path, site))
and os.path.isdir(os.path.join(sites_path, site))]
and os.path.isdir(os.path.join(sites_path, site))
and not site in ('assets',)]
def setup_parser():
import argparse


Ładowanie…
Anuluj
Zapisz