Changeset 1281


Ignore:
Timestamp:
Jul 26, 2009, 2:09:48 AM (15 years ago)
Author:
mitchb
Message:
Fix spacing and detabify django autoinstaller
I tried to convince myself not to care all day and failed; don't mind me.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/locker/deploy/bin/django

    r1279 r1281  
    2222
    2323def reloader_thread():
    24     while True:
    25         if django.utils.autoreload.code_changed():
    26             os._exit(3)
    27         time.sleep(1)
     24  while True:
     25    if django.utils.autoreload.code_changed():
     26      os._exit(3)
     27    time.sleep(1)
    2828t = threading.Thread(target=reloader_thread)
    2929t.daemon = True
     
    7474    while (<SETTINGS>) {
    7575      if (/^\)/) {
    76         print NEWSETTINGS "    'django.contrib.admin',\n";
    77         print NEWSETTINGS "    'django.contrib.admindocs',\n";
     76        print NEWSETTINGS "    'django.contrib.admin',\n";
     77        print NEWSETTINGS "    'django.contrib.admindocs',\n";
    7878      }
    7979      print NEWSETTINGS $_;
Note: See TracChangeset for help on using the changeset viewer.