[minor] Address fix (#12025)
diff --git a/erpnext/selling/doctype/customer/customer.py b/erpnext/selling/doctype/customer/customer.py
index 24d63e6..9c2545b 100644
--- a/erpnext/selling/doctype/customer/customer.py
+++ b/erpnext/selling/doctype/customer/customer.py
@@ -74,7 +74,7 @@
self.db_set('email_id', self.email_id)
def create_primary_address(self):
- if self.flags.is_new_doc and self.get('address_line_1'):
+ if self.flags.is_new_doc and self.get('address_line1'):
make_address(self)
def update_lead_status(self):