Index: src/django_gheat/gheat/management/commands/import_droidstumbler.py
===================================================================
--- src/django_gheat/gheat/management/commands/import_droidstumbler.py	(revision 9158)
+++ src/django_gheat/gheat/management/commands/import_droidstumbler.py	(revision 9161)
@@ -28,6 +28,4 @@
 from django.core.management.base import BaseCommand
 from optparse import OptionParser, make_option
-import settings
-setup_environ(settings)
 from gheat.models import *
 import datetime
@@ -44,5 +42,5 @@
     epoch, msg_type, lat, lon, accuracy, ssid, bssid, level, frequency, capabilities, empty = row
     if msg_type == "data" and lat and lon:
-      ap, created = Accespoint.objects.get_or_create(mac=bssid, ssid="ap-WirelessLeiden-" + ssid, encryptie=capabilities)
+      ap, created = Accespoint.objects.get_or_create(mac=bssid, ssid=ssid, encryptie=capabilities)
       if created:
         print "# INFO: New AccessPoint %s (%s)" % (ap.ssid, ap.mac)
