Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2019-11-18 20:10:38 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2019-11-18 20:10:38 +0000
commit1ae1c764ba194279c19428f64c50b9a8af0980aa (patch)
treef32368bdd73338e698a9503239ecb8ad61fc5227
parentc2a2e1e5d07e4c2582c3063a57cd52e46a61edd7 (diff)
Added args/kwargs to function
-rw-r--r--archinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index bddf8de4..61a51e36 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -789,7 +789,7 @@ def cache_diskpw_on_disk():
with open(args['pwfile'], 'w') as pw:
pw.write(args['password'])
-def refresh_partition_list(drive):
+def refresh_partition_list(drive, *args, **kwargs):
args['paritions'] = get_partitions(drive)
if __name__ == '__main__':